main.h 442 B

12345678910111213141516171819202122232425
  1. //
  2. // main.h
  3. // BulletTest
  4. //
  5. // Copyright (c) 2011 Apple Inc.
  6. //
  7. #ifndef BulletTest_main_h
  8. #define BulletTest_main_h
  9. #ifdef __cplusplus
  10. extern "C" {
  11. #endif
  12. extern int gReportAverageTimes; // if 0, report best times
  13. extern int gExitOnError; // if non-zero, exit as soon an an error is encountered
  14. extern const char *gAppName; // the name of this application
  15. #ifdef __cplusplus
  16. }
  17. #endif
  18. #endif