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

Last change on this file since 69 was 49, checked in by Nishi, on Sep 18, 2024 at 7:33:18 PM

proper resource

  • Property svn:keywords set to Id
File size: 415 bytes
RevLine 
[3]1/* $Id: version.c 49 2024-09-18 10:33:18Z 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)
[27]11 PLATFORMM
[18]12#elif defined(__NetBSD__)
13 "NetBSD"
[27]14#elif defined(__linux__)
15 "Linux"
[18]16#elif defined(__MINGW32__)
17 "Windows"
18#else
19 "Unix"
20#endif
21 ;
22
[3]23const char* tw_get_version(void) { return tw_version; }
[18]24const char* tw_get_platform(void) { return tw_platform; }
Note: See TracBrowser for help on using the repository browser.