blob: fba143d791f0b1bc63501ba665a6a3a5e9cf2e9b (
plain)
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
|
/******************************************************************************
* LEGAL NOTICE *
* *
* USE OF THIS SOFTWARE (including any copy or compiled version thereof) AND *
* DOCUMENTATION IS SUBJECT TO THE SOFTWARE LICENSE AND RESTRICTIONS AND THE *
* WARRANTY DISLCAIMER SET FORTH IN LEGAL_NOTICE.TXT FILE. IF YOU DO NOT *
* FULLY ACCEPT THE TERMS, YOU MAY NOT INSTALL OR OTHERWISE USE THE SOFTWARE *
* OR DOCUMENTATION. *
* NOTWITHSTANDING ANYTHING TO THE CONTRARY IN THIS NOTICE, INSTALLING OR *
* OTHERISE USING THE SOFTWARE OR DOCUMENTATION INDICATES YOUR ACCEPTANCE OF *
* THE LICENSE TERMS AS STATED. *
* *
******************************************************************************/
/* Version: 1.8.9\3686 */
/* Build : 13 */
/* Date : 12/08/2012 */
/**
\file CgVersion.h
\brief
\attention This file should not be modified.
If you think something is wrong here, please contact CellGuide
Defines
*/
#ifndef CG_VERSION_H
#define CG_VERSION_H
#ifdef __cplusplus
extern "C" {
#endif /*__cplusplus*/
#include "CgTypes.h" /**< CellGuide Types */
#ifdef CGTEST
#define CG_BUILD_MODE "TEST"
#elif defined(DEBUG) || defined (_DEBUG)
#define CG_BUILD_MODE "DEBUG"
#else
#define CG_BUILD_MODE "RELEASE"
#endif
/**
* VERSION type to pass VERSION types of information using one union
*/
typedef struct SCgVersion{
const char *buildVersion;
const char *buildOriginator;
const char *buildName;
const char *buildNumber;
const char *buildDate;
const char *buildTime;
const char *buildMode;
} TCgVersion;
const char *CgVersionBuildNumber(const TCgVersion *apVersion);
const char *CgVersionBuildDate(const TCgVersion *apVersion);
const char *CgVersionBuildTime(const TCgVersion *apVersion);
/*@}*/
#ifdef __cplusplus
}
#endif /*__cplusplus*/
#endif
|