1 | /* |
2 | * Legal Notice |
3 | * |
4 | * This document and associated source code (the "Work") is a part of a |
5 | * benchmark specification maintained by the TPC. |
6 | * |
7 | * The TPC reserves all right, title, and interest to the Work as provided |
8 | * under U.S. and international laws, including without limitation all patent |
9 | * and trademark rights therein. |
10 | * |
11 | * No Warranty |
12 | * |
13 | * 1.1 TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, THE INFORMATION |
14 | * CONTAINED HEREIN IS PROVIDED "AS IS" AND WITH ALL FAULTS, AND THE |
15 | * AUTHORS AND DEVELOPERS OF THE WORK HEREBY DISCLAIM ALL OTHER |
16 | * WARRANTIES AND CONDITIONS, EITHER EXPRESS, IMPLIED OR STATUTORY, |
17 | * INCLUDING, BUT NOT LIMITED TO, ANY (IF ANY) IMPLIED WARRANTIES, |
18 | * DUTIES OR CONDITIONS OF MERCHANTABILITY, OF FITNESS FOR A PARTICULAR |
19 | * PURPOSE, OF ACCURACY OR COMPLETENESS OF RESPONSES, OF RESULTS, OF |
20 | * WORKMANLIKE EFFORT, OF LACK OF VIRUSES, AND OF LACK OF NEGLIGENCE. |
21 | * ALSO, THERE IS NO WARRANTY OR CONDITION OF TITLE, QUIET ENJOYMENT, |
22 | * QUIET POSSESSION, CORRESPONDENCE TO DESCRIPTION OR NON-INFRINGEMENT |
23 | * WITH REGARD TO THE WORK. |
24 | * 1.2 IN NO EVENT WILL ANY AUTHOR OR DEVELOPER OF THE WORK BE LIABLE TO |
25 | * ANY OTHER PARTY FOR ANY DAMAGES, INCLUDING BUT NOT LIMITED TO THE |
26 | * COST OF PROCURING SUBSTITUTE GOODS OR SERVICES, LOST PROFITS, LOSS |
27 | * OF USE, LOSS OF DATA, OR ANY INCIDENTAL, CONSEQUENTIAL, DIRECT, |
28 | * INDIRECT, OR SPECIAL DAMAGES WHETHER UNDER CONTRACT, TORT, WARRANTY, |
29 | * OR OTHERWISE, ARISING IN ANY WAY OUT OF THIS OR ANY OTHER AGREEMENT |
30 | * RELATING TO THE WORK, WHETHER OR NOT SUCH AUTHOR OR DEVELOPER HAD |
31 | * ADVANCE NOTICE OF THE POSSIBILITY OF SUCH DAMAGES. |
32 | * |
33 | * Contributors |
34 | * - Sergey Vasilevskiy |
35 | */ |
36 | |
37 | /****************************************************************************** |
38 | * Description: Versioning information for the EGen package. |
39 | * Updated on every release. |
40 | ******************************************************************************/ |
41 | |
42 | #ifndef EGEN_VERSION_H |
43 | #define EGEN_VERSION_H |
44 | |
45 | #include "EGenStandardTypes.h" |
46 | |
47 | namespace TPCE { |
48 | |
49 | extern "C" { |
50 | void GetEGenVersion_C(INT32 &iMajorVersion, INT32 &iMinorVersion, INT32 &iRevisionNumber, INT32 &iBetaLevel); |
51 | void GetEGenVersionString_C(char *szOutput, size_t iOutputBufferLen); |
52 | void PrintEGenVersion_C(); |
53 | void GetEGenVersionUpdateTimestamp_C(char *szOutput, size_t iOutputBufferLen); |
54 | } |
55 | |
56 | // Retrieve major, minor, revision, and beta level numbers for EGen. |
57 | // For example, v3.10 beta 1 has: |
58 | // major 3 |
59 | // minor 10 |
60 | // revision 0 |
61 | // beta level 1 |
62 | // v3.10 release has: |
63 | // major 3 |
64 | // minor 10 |
65 | // revision 0 |
66 | // beta level 0 |
67 | // |
68 | void GetEGenVersion(INT32 &iMajorVersion, INT32 &iMinorVersion, INT32 &iRevisionNumber, INT32 &iBetaLevel); |
69 | |
70 | // Return versioning information formated as a string |
71 | // |
72 | // Note: requires output buffer at least 64 characters long, or nothing will be |
73 | // returned. |
74 | // |
75 | void GetEGenVersionString(char *szOutput, size_t iOutputBufferLen); |
76 | |
77 | // Output EGen versioning information on stdout |
78 | // |
79 | void PrintEGenVersion(); |
80 | |
81 | // Return the date/time when the EGen versioning information was last updated. |
82 | // |
83 | void GetEGenVersionUpdateTimestamp(char *szOutput, size_t iOutputBufferLen); |
84 | |
85 | } // namespace TPCE |
86 | |
87 | #endif // #ifndef EGEN_VERSION_H |
88 | |