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

Last change on this file since 219 was 219, checked in by Nishi, on Oct 3, 2024 at 5:40:37 AM

add watcom

  • Property svn:keywords set to Id
File size: 705 bytes
RevLine 
[3]1/* $Id: version.c 219 2024-10-02 20:40:37Z 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)
[219]19 "Windows-VisualC"
[215]20#elif defined(__BORLANDC__)
[219]21 "Windows-Borland"
22#elif defined(__WATCOMC__)
23 "Windows-Watcom"
[81]24#elif defined(__HAIKU__)
25 "Haiku"
[163]26#elif defined(__CYGWIN__)
27 "Cygwin"
[183]28#elif defined(_PSP)
29 "PSP"
[187]30#elif defined(__PPU__)
31 "PS3"
[18]32#else
33 "Unix"
34#endif
35 ;
36
[3]37const char* tw_get_version(void) { return tw_version; }
[18]38const char* tw_get_platform(void) { return tw_platform; }
Note: See TracBrowser for help on using the repository browser.