config.h 685 B

123456789101112131415161718192021222324252627
  1. //------------------------------------------------------------------------------
  2. // File: config.h
  3. //
  4. // Copyright (c) 2006, Chips & Media. All rights reserved.
  5. // This file should be modified by some developers of C&M according to product version.
  6. //------------------------------------------------------------------------------
  7. #ifndef __CONFIG_H__
  8. #define __CONFIG_H__
  9. #if defined(_WIN32) || defined(__WIN32__) || defined(_WIN64) || defined(WIN32) || defined(__MINGW32__)
  10. # define PLATFORM_WIN32
  11. #elif defined(linux) || defined(__linux) || defined(ANDROID)
  12. # define PLATFORM_LINUX
  13. #else
  14. # define PLATFORM_NON_OS
  15. #endif
  16. #define API_VERSION 0x125
  17. #endif /* __CONFIG_H__ */