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