Niotso  git revision 558726a9f13d7c3423a683dd2f4323589b66c310
The New Implementation of The Sims Online
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
version.hpp
Go to the documentation of this file.
1 #define FD_VERSION_A 0
2 #define FD_VERSION_B 0
3 #define FD_VERSION_C 1
4 #define FD_REVISION 1
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 FDVERSION L"" \
10  xstr(FD_VERSION_A) \
11  L"." \
12  xstr(FD_VERSION_B) \
13  L"." \
14  xstr(FD_VERSION_C) \
15  L" (rev. " \
16  xstr(FD_REVISION) \
17  L")"