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