1 #ifndef SCREEN_H_
2 #define SCREEN_H_
3 
4 #ifdef __cplusplus
5 extern "C" {
6 #endif /* __cplusplus */
7 
8 int getScreenWidth ();
9 int getScreenHeight ();
10 
11 #ifdef __cplusplus
12 }
13 #endif /* __cplusplus */
14 
15 #endif /* SCREEN_H_ */
16