mirror of
https://github.com/simtactics/niotso.git
synced 2025-03-15 00:01:21 +00:00
New client code for Windows. The window does not appear until the OpenGL rendering context has completely initialized and (one day) has the first frame ready to draw.
10 lines
358 B
C
10 lines
358 B
C
#define VERSION_A 0
|
|
#define VERSION_B 0
|
|
#define VERSION_C 0
|
|
#define VERSION_D 0
|
|
|
|
//You don't have to touch the following
|
|
#define xstr(x) str(x)
|
|
#define str(x) #x //Yes, double levels is required. See <http://gcc.gnu.org/onlinedocs/cpp/Stringification.html>
|
|
#define VERSIONSTR "" \
|
|
xstr(VERSION_A) "." xstr(VERSION_B) "." xstr(VERSION_C) "." xstr(VERSION_D)
|