Niotso  git revision 558726a9f13d7c3423a683dd2f4323589b66c310
The New Implementation of The Sims Online
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
version.h
Go to the documentation of this file.
1 #define VERSION_A 0
2 #define VERSION_B 0
3 #define VERSION_C 0
4 #define VERSION_D 0
5 
6 //You don't have to touch the following
7 #define xstr(x) str(x)
8 #define str(x) #x //Yes, double levels is required. See <http://gcc.gnu.org/onlinedocs/cpp/Stringification.html>
9 #define VERSIONSTR "" \
10  xstr(VERSION_A) "." xstr(VERSION_B) "." xstr(VERSION_C) "." xstr(VERSION_D)