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

Last change on this file since 214 was 214, checked in by Nishi, on Oct 3, 2024 at 2:49:31 AM

fix

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