BFPlatform.h 433 B

123456789101112131415161718192021222324
  1. #pragma once
  2. #define BFSTDCALL
  3. #include "AndroidCommon.h"
  4. #define BF_PLATFORM_ANDROID
  5. #define BF_PLATFORM_POSIX
  6. #define BF_PLATFORM_NAME "BF_PLATFORM_ANDROID"
  7. #define BF_IMPORT extern "C"
  8. #ifdef BFSYSLIB_DYNAMIC
  9. #define BF_EXPORT extern "C"
  10. #define BF_CALLTYPE
  11. #else
  12. #define BF_EXPORT extern "C"
  13. #define BF_CALLTYPE
  14. #define BF_RESOURCES_REL_DIR "../Resources"
  15. #endif
  16. #define BF_DEBUG_BREAK()
  17. #include "../PlatformInterface.h"