Rev | Line | |
---|
[3] | 1 | /* $Id: version.c 399 2024-10-31 15:31:42Z 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"
|
---|
[385] | 16 | #elif defined(__bsdi__)
|
---|
| 17 | "BSD/OS"
|
---|
[27] | 18 | #elif defined(__linux__)
|
---|
| 19 | "Linux"
|
---|
[312] | 20 | #elif defined(__OS2__)
|
---|
| 21 | "OS/2"
|
---|
[325] | 22 | #elif defined(__NeXT__)
|
---|
| 23 | "NeXT"
|
---|
[317] | 24 | #elif defined(__NETWARE__)
|
---|
| 25 | "NetWare"
|
---|
[359] | 26 | #elif defined(__DOS__)
|
---|
| 27 | "DOS"
|
---|
[214] | 28 | #elif defined(__MINGW32__)
|
---|
| 29 | "Windows-MinGW32"
|
---|
| 30 | #elif defined(_MSC_VER)
|
---|
[219] | 31 | "Windows-VisualC"
|
---|
[215] | 32 | #elif defined(__BORLANDC__)
|
---|
[219] | 33 | "Windows-Borland"
|
---|
| 34 | #elif defined(__WATCOMC__)
|
---|
| 35 | "Windows-Watcom"
|
---|
[81] | 36 | #elif defined(__HAIKU__)
|
---|
| 37 | "Haiku"
|
---|
[399] | 38 | #elif defined(__APPLE__)
|
---|
| 39 | "Darwin"
|
---|
[163] | 40 | #elif defined(__CYGWIN__)
|
---|
| 41 | "Cygwin"
|
---|
[183] | 42 | #elif defined(_PSP)
|
---|
| 43 | "PSP"
|
---|
[187] | 44 | #elif defined(__PPU__)
|
---|
| 45 | "PS3"
|
---|
[277] | 46 | #elif defined(__minix)
|
---|
| 47 | "Minix"
|
---|
[305] | 48 | #elif defined(__USLC__)
|
---|
| 49 | "UnixWare"
|
---|
[18] | 50 | #else
|
---|
| 51 | "Unix"
|
---|
| 52 | #endif
|
---|
| 53 | ;
|
---|
| 54 |
|
---|
[3] | 55 | const char* tw_get_version(void) { return tw_version; }
|
---|
[18] | 56 | const char* tw_get_platform(void) { return tw_platform; }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.