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

Last change on this file since 38 was 33, checked in by Nishi, on Sep 16, 2024 at 9:52:47 PM

can show readme on index now

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