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

Last change on this file since 149 was 104, checked in by Nishi, on Sep 20, 2024 at 12:16:52 AM

format, and fix platform

  • Property svn:keywords set to Id
File size: 451 bytes
RevLine 
[3]1/* $Id: version.c 104 2024-09-19 15:16:52Z 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"
[18]16#elif defined(__MINGW32__)
17 "Windows"
[81]18#elif defined(__HAIKU__)
19 "Haiku"
[18]20#else
21 "Unix"
22#endif
23 ;
24
[3]25const char* tw_get_version(void) { return tw_version; }
[18]26const char* tw_get_platform(void) { return tw_platform; }
Note: See TracBrowser for help on using the repository browser.