source: Main/trunk/Server/version.c@ 183

Last change on this file since 183 was 183, checked in by Nishi, on Sep 28, 2024 at 1:15:15 AM

psp support

  • Property svn:keywords set to Id
File size: 520 bytes
Line 
1/* $Id: version.c 183 2024-09-27 16:15:15Z nishi $ */
2
3#define SOURCE
4
5#include "tw_version.h"
6
7const char* tw_version = TW_VERSION;
8
9const char* tw_platform =
10#if defined(PLATFORM)
11 PLATFORM
12#elif defined(__NetBSD__)
13 "NetBSD"
14#elif defined(__linux__)
15 "Linux"
16#elif defined(__MINGW32__)
17 "Windows"
18#elif defined(__HAIKU__)
19 "Haiku"
20#elif defined(__CYGWIN__)
21 "Cygwin"
22#elif defined(_PSP)
23 "PSP"
24#else
25 "Unix"
26#endif
27 ;
28
29const char* tw_get_version(void) { return tw_version; }
30const char* tw_get_platform(void) { return tw_platform; }
Note: See TracBrowser for help on using the repository browser.