ark_common.h 396 B

123456789101112131415161718192021222324252627282930
  1. #ifndef __ARK_COMMON_H__
  2. #define __ARK_COMMON_H__
  3. #ifdef __cplusplus
  4. extern "C" {
  5. #endif
  6. #include "ark_api.h"
  7. #define SUCCESS 0
  8. //#define ARK_DBG
  9. #ifdef ARK_DBG
  10. #define ark_dbg(...) printf(__VA_ARGS__)
  11. #else
  12. #define ark_dbg(...)
  13. #endif
  14. #define SCREEN_WIDTH 1024
  15. #define SCREEN_HEIGHT 600
  16. #ifdef __cplusplus
  17. }
  18. #endif
  19. #endif