Initial commit.

This commit is contained in:
blitz-research
2014-01-31 08:23:00 +13:00
commit 08a613ed0e
322 changed files with 45306 additions and 0 deletions
+27
View File
@@ -0,0 +1,27 @@
#ifndef CONFIG_H
#define CONFIG_H
#define BASE_VER 1107
#ifdef PRO
#define PRO_F 0x010000
#else
#define PRO_F 0
#endif
#ifdef DEMO
#define DEMO_F 0x080000
#else
#define DEMO_F 0
#endif
#ifdef EDU
#define EDU_F 0x200000
#else
#define EDU_F 0
#endif
#define VERSION (BASE_VER|PRO_F|DEMO_F|EDU_F)
#endif