Rev | Line | |
---|
[3] | 1 | /* $Id: version.c 212 2024-10-02 17:44:55Z 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"
|
---|
[27] | 14 | #elif defined(__linux__)
|
---|
| 15 | "Linux"
|
---|
[212] | 16 | #elif defined(__MINGW32__) || defined(_MSC_VER)
|
---|
[18] | 17 | "Windows"
|
---|
[81] | 18 | #elif defined(__HAIKU__)
|
---|
| 19 | "Haiku"
|
---|
[163] | 20 | #elif defined(__CYGWIN__)
|
---|
| 21 | "Cygwin"
|
---|
[183] | 22 | #elif defined(_PSP)
|
---|
| 23 | "PSP"
|
---|
[187] | 24 | #elif defined(__PPU__)
|
---|
| 25 | "PS3"
|
---|
[18] | 26 | #else
|
---|
| 27 | "Unix"
|
---|
| 28 | #endif
|
---|
| 29 | ;
|
---|
| 30 |
|
---|
[3] | 31 | const char* tw_get_version(void) { return tw_version; }
|
---|
[18] | 32 | const char* tw_get_platform(void) { return tw_platform; }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.