Rev | Line | |
---|
[3] | 1 | /* $Id: version.c 305 2024-10-10 02:15:08Z nishi $ */
|
---|
| 2 |
|
---|
[16] | 3 | #define SOURCE
|
---|
| 4 |
|
---|
[3] | 5 | #include "tw_version.h"
|
---|
| 6 |
|
---|
[49] | 7 | const char* tw_version = TW_VERSION;
|
---|
[3] | 8 |
|
---|
[18] | 9 | const char* tw_platform =
|
---|
| 10 | #if defined(PLATFORM)
|
---|
[104] | 11 | PLATFORM
|
---|
[18] | 12 | #elif defined(__NetBSD__)
|
---|
| 13 | "NetBSD"
|
---|
[252] | 14 | #elif defined(__OpenBSD__)
|
---|
| 15 | "OpenBSD"
|
---|
[27] | 16 | #elif defined(__linux__)
|
---|
| 17 | "Linux"
|
---|
[214] | 18 | #elif defined(__MINGW32__)
|
---|
| 19 | "Windows-MinGW32"
|
---|
| 20 | #elif defined(_MSC_VER)
|
---|
[219] | 21 | "Windows-VisualC"
|
---|
[215] | 22 | #elif defined(__BORLANDC__)
|
---|
[219] | 23 | "Windows-Borland"
|
---|
| 24 | #elif defined(__WATCOMC__)
|
---|
| 25 | "Windows-Watcom"
|
---|
[81] | 26 | #elif defined(__HAIKU__)
|
---|
| 27 | "Haiku"
|
---|
[163] | 28 | #elif defined(__CYGWIN__)
|
---|
| 29 | "Cygwin"
|
---|
[183] | 30 | #elif defined(_PSP)
|
---|
| 31 | "PSP"
|
---|
[187] | 32 | #elif defined(__PPU__)
|
---|
| 33 | "PS3"
|
---|
[277] | 34 | #elif defined(__minix)
|
---|
| 35 | "Minix"
|
---|
[305] | 36 | #elif defined(__USLC__)
|
---|
| 37 | "UnixWare"
|
---|
[18] | 38 | #else
|
---|
| 39 | "Unix"
|
---|
| 40 | #endif
|
---|
| 41 | ;
|
---|
| 42 |
|
---|
[3] | 43 | const char* tw_get_version(void) { return tw_version; }
|
---|
[18] | 44 | const char* tw_get_platform(void) { return tw_platform; }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.