config.h 309 B

123456789101112131415161718192021222324252627
  1. #ifndef CONFIG_H
  2. #define CONFIG_H
  3. #define BASE_VER 1108
  4. #ifdef PRO
  5. #define PRO_F 0x010000
  6. #else
  7. #define PRO_F 0
  8. #endif
  9. #ifdef DEMO
  10. #define DEMO_F 0x080000
  11. #else
  12. #define DEMO_F 0
  13. #endif
  14. #ifdef EDU
  15. #define EDU_F 0x200000
  16. #else
  17. #define EDU_F 0
  18. #endif
  19. #define VERSION (BASE_VER|PRO_F|DEMO_F|EDU_F)
  20. #endif