1 #ifndef _SCREEN_TEST_H_ 2 #define _SCREEN_TEST_H_ 3 4 void *screen_test(void *argc); 5 void screenTest_key_detect(unsigned int code); 6 7 extern unsigned char key_press; 8 extern int tiles_count; 9 10 struct screen_msg { 11 int result; 12 int x; 13 int y; 14 int w; 15 int h; 16 }; 17 18 #endif 19