-
Notifications
You must be signed in to change notification settings - Fork 1
/
rtPwpVersions.h
83 lines (65 loc) · 2.77 KB
/
rtPwpVersions.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
// Copyright(C) 2022, ATA Engineering, Inc.
//
// This program is free software; you can redistribute it and /or
// modify it under the terms of the GNU Lesser General Public
// License as published by the Free Software Foundation; either
// version 3 of the License, or (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.See the GNU
// Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public License
// along with this program; if not, see
// < https://www.gnu.org/licenses/lgpl-3.0.html>.
//
// Some of the source code for this program was generated with the
// Pointwise Plugin SDK, and is subject to the Cadence Public License
// Version 1.0.
/****************************************************************************
*
* Pointwise Plugin utility functions
*
* (C) 2021 Cadence Design Systems, Inc. All rights reserved worldwide.
*
***************************************************************************/
#ifndef _RTPWPVERSIONS_H_
#define _RTPWPVERSIONS_H_
/*------------------------------------------------
PWP api version with which plugin conforms
------------------------------------------------*/
/*! \brief The PWP-API major version value.
*/
#define VERSION_PWP_MAJOR 1
/*! \brief The PWP-API minor version value.
*/
#define VERSION_PWP_MINOR 0
/*! \brief This macro is used for static initialization of a PWP_VERSION
struct to the current \sf{VERSION_PWP_MAJOR} and \sf{VERSION_PWP_MINOR} values.
*/
#define VERSION_PWP_INIT {VERSION_PWP_MAJOR, VERSION_PWP_MINOR}
/*------------------------------------------------
plugin software release version
------------------------------------------------*/
/*! \brief The software release major version value.
*/
#define VERSION_LIB_MAJOR 1
/*! \brief The software release minor version value.
*/
#define VERSION_LIB_MINOR 0
/*! \brief This macro is used for static initialization of a PWP_VERSION
struct to the current \sf{VERSION_LIB_MAJOR} and \sf{VERSION_LIB_MINOR} values.
*/
#define VERSION_LIB_INIT {VERSION_LIB_MAJOR, VERSION_LIB_MINOR}
/************************************************************************/
/*! \file
\brief Defines Implementation Version Information
This file contains 2 version value macro pairs. These values are used
throughout the Plugin SDK. One pair (VERSION_PWP_ prefix) defines the PWP-API
version. The other pair (VERSION_LIB_ prefix) defines the plugin binary release
version.
The plugin developer should edit the VERSION_PWP_MAJOR, VERSION_PWP_MINOR,
VERSION_LIB_MAJOR, and VERSION_LIB_MINOR values as needed.
*/
#endif /* _RTPWPVERSIONS_H_ */