Subversion Repositories Tewi

Rev

Rev 183 | Rev 212 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
3 nishi 1
/* $Id: version.c 187 2024-09-28 00:07:34Z nishi $ */
2
 
16 nishi 3
#define SOURCE
4
 
3 nishi 5
#include "tw_version.h"
6
 
49 nishi 7
const char* tw_version = TW_VERSION;
3 nishi 8
 
18 nishi 9
const char* tw_platform =
10
#if defined(PLATFORM)
104 nishi 11
    PLATFORM
18 nishi 12
#elif defined(__NetBSD__)
13
    "NetBSD"
27 nishi 14
#elif defined(__linux__)
15
    "Linux"
18 nishi 16
#elif defined(__MINGW32__)
17
    "Windows"
81 nishi 18
#elif defined(__HAIKU__)
19
    "Haiku"
163 nishi 20
#elif defined(__CYGWIN__)
21
    "Cygwin"
183 nishi 22
#elif defined(_PSP)
23
    "PSP"
187 nishi 24
#elif defined(__PPU__)
25
    "PS3"
18 nishi 26
#else
27
    "Unix"
28
#endif
29
    ;
30
 
3 nishi 31
const char* tw_get_version(void) { return tw_version; }
18 nishi 32
const char* tw_get_platform(void) { return tw_platform; }