00001 00039 #ifndef DEFAULT_WIN_H_INCLUDED 00040 #define DEFAULT_WIN_H_INCLUDED 00041 00047 #include <stdint.h> 00048 00050 typedef uint8_t win_button_mask_t; 00051 00053 typedef uint8_t win_keycode_t; 00054 00059 typedef void * win_command_t; 00060 00062 typedef uint16_t clock_jiffy_t; 00063 00065 #define WIN_ROOT_COLOR GFX_COLOR(0, 0, 0) 00066 00068 #define WIN_SCREEN_COLOR GFX_COLOR(0, 0, 0) 00069 00077 #define WIN_EVENT_QUEUE_SIZE 16 00078 00080 #define WIN_TOUCH_BUTTON (1 << 0) 00081 00083 00084 #endif /* DEFAULT_WIN_H_INCLUDED */
1.6.3