CFx SDK Documentation 2024 SP0
Loading...
Searching...
No Matches
TDVersion.h
Go to the documentation of this file.
1
2// Copyright (C) 2002-2022, Open Design Alliance (the "Alliance").
3// All rights reserved.
4//
5// This software and its documentation and related materials are owned by
6// the Alliance. The software may only be incorporated into application
7// programs owned by members of the Alliance, subject to a signed
8// Membership Agreement and Supplemental Software License Agreement with the
9// Alliance. The structure and organization of this software are the valuable
10// trade secrets of the Alliance and its suppliers. The software is also
11// protected by copyright law and international treaty provisions. Application
12// programs incorporating this software must include the following statement
13// with their copyright notices:
14//
15// This application incorporates Open Design Alliance software pursuant to a license
16// agreement with Open Design Alliance.
17// Open Design Alliance Copyright (C) 2002-2022 by Open Design Alliance.
18// All rights reserved.
19//
20// By use of this software, its documentation or related materials, you
21// acknowledge and accept the above terms.
23
24#ifndef TD_VERSION_DEFINED
25#define TD_VERSION_DEFINED
26
27#define TD_COMPANY_NAME_S "Open Design Alliance"
28#define TD_COMPANY_NAME_W L"Open Design Alliance"
29
30// The string below need to be defined in quotes else compiler complains in illegal characters
31#define TD_COPYRIGHT_START_S "Copyright\xA9 "
32#define TD_COPYRIGHT_START_YEAR_S "2002"
33#define TD_COPYRIGHT_END_S "-2022, Open Design Alliance"
34#define TD_COPYRIGHT_START_W L"Copyright \x00A9 "
35#define TD_COPYRIGHT_START_YEAR_W L"2002"
36#define TD_COPYRIGHT_END_W L"-2022, Open Design Alliance"
37#define TDNET_C_COPYRIGHT_START_YEAR_W TD_COPYRIGHT_START_YEAR_W
38#define TDNET_COPYRIGHT_START_YEAR_W TD_COPYRIGHT_START_YEAR_W
39
40#define TD_COPYRIGHT_S TD_COPYRIGHT_START_S TD_COPYRIGHT_START_YEAR_S TD_COPYRIGHT_END_S
41#define TD_COPYRIGHT_W TD_COPYRIGHT_START_W TD_COPYRIGHT_START_YEAR_W TD_COPYRIGHT_END_W
42
43#define TD_PRODUCT_NAME_START_S "ODA"
44#define TD_PRODUCT_NAME_ADDITION_S ""
45#define TDX_PRODUCT_NAME_ADDITION_S "X"
46#define TD_PRODUCT_NAME_END_S "SDK"
47#define TD_PRODUCT_NAME_START_W L"ODA"
48#define TD_PRODUCT_NAME_ADDITION_W L""
49#define TDX_PRODUCT_NAME_ADDITION_W L"X"
50#define TDNET_PRODUCT_NAME_ADDITION_W L".NET"
51#define TDNET_C_PRODUCT_NAME_ADDITION_W L".NET Classic"
52#define TD_PRODUCT_NAME_END_W L"SDK"
53
54#define TD_PRODUCT_NAME_S TD_PRODUCT_NAME_START_S " " TD_PRODUCT_NAME_END_S
55#define TD_PRODUCT_NAME_W TD_PRODUCT_NAME_START_W L" " TD_PRODUCT_NAME_END_W
56
57#define DEFAULT_MODULE_EXTENSION_S "tx"
58#define DEFAULT_MODULE_EXTENSION_DOT_S ".tx"
59#define DEFAULT_MODULE_EXTENSION_W L"tx"
60#define DEFAULT_MODULE_EXTENSION_DOT_W L".tx"
61#define VECTORIZATION_MODULE_EXTENSION_S "txv"
62#define VECTORIZATION_MODULE_EXTENSION_DOT_S ".txv"
63#define VECTORIZATION_MODULE_EXTENSION_W L"txv"
64#define VECTORIZATION_MODULE_EXTENSION_DOT_W L".txv"
65
66
67// Full Product version is:
68// TD_MAJOR_VERSION.TD_MINOR_VERSION.TD_MAJOR_BUILD.TD_MINOR_BUILD
69// Example: 1.11.00.00 (initial 1.11 release).
70// OpenDesign maintenance updates to 1.11 will increase the major build number,
71// for example, 1.11.01.00, 1.11.02.00, etc. Minor build number is reserved for
72// client builds.
73
74/* When Incrementing these be sure to make the appropriate changes
75 * to the Version string and build comments.
76 */
77//FELIX_CHANGE_BEGIN
78#define WCREV_NAME $WC##REV$
79#if WCREV_NAME==$WCREV$
80 #define WCREV 0
81#else
82 #define WCREV $WCREV$
83#endif
84#define TD_MAJOR_VERSION 23
85#define TD_MINOR_VERSION 1
86#define TD_MAJOR_BUILD 0
87#define TD_MINOR_BUILD WCREV
88
89//FELIX_CHANGE_BEGIN
90/*
91FX_VERSION used to define incremental COM Object version for every Product Major Release and used with combination of
92TD_MAJOR_VERSION so final Object version will be TD_MAJOR_VERSION.FX_VERSION
93Modification Guidlines:
94TD_MINOR_VERSION Changed Set FX_VERSION = TD_MINOR_VERSION
95TD_MAJOR_VERSION is same as for previous product release until ODA major version is not changed and
96On TD_MAJOR_VERSION reset FX_VERSION to TD_MINOR_VERSION,
97For each new ARES Product Release FX_VERSION incremented by 1 if ODA version not changed
98Maintain History with Product version (i.e 2019.0.0)
99*/
100//#define FX_VERSION 3 //2019.0.0
101//#define FX_VERSION 4 //2020.0.0
102//#define FX_VERSION 5 //2021.0.0
103//define next versions here
104
105#define FX_VERSION TD_MINOR_VERSION //ODA changed
106
107#define TD_TYPELIB_VER_STR_S "23.1" //TD_MAJOR_VERSION.FX_VERSION
108//FELIX_CHANGE_END
109
110// Numeric representation of the TD version to be used in preprocessor definitions
111// like #if (TD_VERSION > 30500) ...
112// (we never use minor build number, and it is not included in version.
113// If you are building your custom version of ODA, you may define an alternative TD_VERSION_
114// or TD_VERSION_FULL, to distinguish between minor builds if necessary)
115#define TD_VERSION (TD_MAJOR_BUILD + TD_MINOR_VERSION*100 + TD_MAJOR_VERSION*10000)
116
117#define TD_SHORT_STRING_VER_S "23.1"
118#define TD_SHORT_STRING_VER_W L"23.1"
119
120#define TD_PRODUCT_VER_STR_W_MGD L"23.1.0.0"
121
122#if WCREV_NAME==$WCREV$
123#define TD_PRODUCT_VER_STR_S "23.1.0.0"
124#define TD_PRODUCT_VER_STR_W L"23.1.0.0"
125
126//Changed in VersionInfo to TD_PRODUCT_NAME_S " " TD_PRODUCT_VER_STR_S
127//That need for NET and ActiveX
128#define TD_BUILD_COMMENTS_S TD_PRODUCT_NAME_S " " TD_PRODUCT_VER_STR_S
129#define TD_BUILD_COMMENTS_W TD_PRODUCT_NAME_W L" " TD_PRODUCT_VER_STR_W
130#else
131 #define TD_PRODUCT_VER_STR_S "23.1.0.$WCREV$"
132 #define TD_PRODUCT_VER_STR_W L"23.1.0.$WCREV$"
133 #define TD_BUILD_COMMENTS_S "ODA\xAE 23.1.0.$WCREV$"
134 #define TD_BUILD_COMMENTS_W L"ODA\x00AE 23.1.0.$WCREV$"
135#endif
136//FELIX_CHANGE_END
137
138#define TD_TYPELIB_VER(MAJ,MIN) version(##MAJ##.##MIN##)
139
140#define TEIGHA_BUILD_NUMBER 0
141#define TEIGHA_MAIN_SVN_REVISION 0
142#define TEIGHA_CORE_SVN_REVISION 0
143#define TEIGHA_DGN_SVN_REVISION 0
144#define TEIGHA_ARCHITECTURE_SVN_REVISION 0
145#define TEIGHA_CIVIL_SVN_REVISION 0
146#define TEIGHA_NET_SVN_REVISION 0
147#define TEIGHA_JAVA_SVN_REVISION 0
148#define TEIGHA_MECHANICAL_SVN_REVISION 0
149#define TEIGHA_PRC_SVN_REVISION 0
150#define TEIGHA_BIM_SVN_REVISION 0
151#define TEIGHA_CLOUD_SVN_REVISION 0
152
153#if defined(_TOOLKIT_IN_DLL_) && defined(_MSC_VER) // second condition for RC
154#define TD_STRINGIZE2( s ) L##s
155#define TD_STRINGIZE( s ) TD_STRINGIZE2( s )
156
157#if _MSC_VER == 1200
158// src is default part of suffix
159// fme is registered for Safe Software Inc. www.safe.com
160
161#define TD_DLL_VERSION_SUFFIX_STR L"_"##TD_STRINGIZE(TD_SHORT_STRING_VER_S)##L"src_6"
162#elif _MSC_VER == 1310
163#define TD_DLL_VERSION_SUFFIX_STR L"_"##TD_STRINGIZE(TD_SHORT_STRING_VER_S)##L"src_7"
164#elif _MSC_VER == 1400
165#define TD_DLL_VERSION_SUFFIX_STR L"_"##TD_STRINGIZE(TD_SHORT_STRING_VER_S)##L"src_8"
166#elif _MSC_VER == 1500
167#define TD_DLL_VERSION_SUFFIX_STR L"_"##TD_STRINGIZE(TD_SHORT_STRING_VER_S)##L"src_9"
168#elif _MSC_VER == 1600
169#define TD_DLL_VERSION_SUFFIX_STR L"_"##TD_STRINGIZE(TD_SHORT_STRING_VER_S)##L"src_10"
170#elif _MSC_VER == 1700
171#define TD_DLL_VERSION_SUFFIX_STR L"_"##TD_STRINGIZE(TD_SHORT_STRING_VER_S)##L"src_11"
172#elif _MSC_VER == 1800
173#define TD_DLL_VERSION_SUFFIX_STR L"_"##TD_STRINGIZE(TD_SHORT_STRING_VER_S)##L"src_12"
174#elif _MSC_VER == 1900
175#define TD_DLL_VERSION_SUFFIX_STR L"_" TD_STRINGIZE(TD_SHORT_STRING_VER_S) L"_14" //FELIX_CHANGE
176#elif _MSC_VER < 1920
177#define TD_DLL_VERSION_SUFFIX_STR L"_" TD_STRINGIZE(TD_SHORT_STRING_VER_S) L"_15" //FELIX_CHANGE
178#elif _MSC_VER < 1930
179#define TD_DLL_VERSION_SUFFIX_STR L"_" TD_STRINGIZE(TD_SHORT_STRING_VER_S) L"_16" //FELIX_CHANGE
180#elif _MSC_VER < 1940
181#define TD_DLL_VERSION_SUFFIX_STR L"_" TD_STRINGIZE(TD_SHORT_STRING_VER_S) L"_17" //FELIX_CHANGE
182#else
183#error "Unsupported compiler for suffixed version"
184#endif
185#endif
186
187
188#if defined(_TOOLKIT_IN_DLL_) && defined(__BORLANDC__)
189#define TD_STRINGIZE2( s ) L""##s
190#define TD_STRINGIZE( s ) TD_STRINGIZE2( s )
191
192#if __BORLANDC__ >= 0x0580 && __BORLANDC__ <= 0x0589
193#define TD_DLL_VERSION_SUFFIX_STR L"_"##TD_STRINGIZE(TD_SHORT_STRING_VER_S)##L"src_b6"
194#elif __BORLANDC__ >= 0x0610 && __BORLANDC__ <= 0x0619
195#define TD_DLL_VERSION_SUFFIX_STR L"_"##TD_STRINGIZE(TD_SHORT_STRING_VER_S)##L"src_b9"
196#elif __BORLANDC__ >= 0x0620 && __BORLANDC__ <= 0x0629
197#define TD_DLL_VERSION_SUFFIX_STR L"_"##TD_STRINGIZE(TD_SHORT_STRING_VER_S)##L"src_b10"
198#else
199#error "Unsupported compiler for suffixed version"
200#endif
201#endif
202
203#if defined(_TOOLKIT_IN_DLL_) && defined(_WIN32) && defined(__GNUC__)
204#define TD_DLL_VERSION_SUFFIX_STR L""
205#endif
206
207#endif // ODA_VERSION_DEFINED
208