2014-01-31 08:23:00 +13:00
|
|
|
|
|
|
|
|
#ifndef CONFIG_H
|
|
|
|
|
#define CONFIG_H
|
|
|
|
|
|
2019-01-18 17:05:31 +01:00
|
|
|
#define BASE_VER 1108
|
2014-01-31 08:23:00 +13:00
|
|
|
|
2016-05-04 09:58:44 +02:00
|
|
|
#define PRO
|
2019-01-18 17:05:31 +01:00
|
|
|
#ifdef PRO
|
|
|
|
|
#define PRO_F 0x010000
|
2014-01-31 08:23:00 +13:00
|
|
|
#else
|
2019-01-18 17:05:31 +01:00
|
|
|
#define PRO_F 0
|
2014-01-31 08:23:00 +13:00
|
|
|
#endif
|
|
|
|
|
|
2019-01-18 17:05:31 +01:00
|
|
|
#ifdef DEMO
|
|
|
|
|
#define DEMO_F 0x080000
|
2014-01-31 08:23:00 +13:00
|
|
|
#else
|
2019-01-18 17:05:31 +01:00
|
|
|
#define DEMO_F 0
|
2014-01-31 08:23:00 +13:00
|
|
|
#endif
|
|
|
|
|
|
2019-01-18 17:05:31 +01:00
|
|
|
#ifdef EDU
|
|
|
|
|
#define EDU_F 0x200000
|
2014-01-31 08:23:00 +13:00
|
|
|
#else
|
2019-01-18 17:05:31 +01:00
|
|
|
#define EDU_F 0
|
2014-01-31 08:23:00 +13:00
|
|
|
#endif
|
|
|
|
|
|
2019-01-18 17:05:31 +01:00
|
|
|
#define VERSION (BASE_VER | PRO_F | DEMO_F | EDU_F)
|
2014-01-31 08:23:00 +13:00
|
|
|
|
|
|
|
|
#endif
|