diff options
Diffstat (limited to 'include/widget_check.h')
| -rw-r--r-- | include/widget_check.h | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/include/widget_check.h b/include/widget_check.h deleted file mode 100644 index 2e3a3a3..0000000 --- a/include/widget_check.h +++ /dev/null @@ -1,27 +0,0 @@ - -#ifndef WIDGET_CHECK_H - -#define WIDGET_CHECK_H - -#include "main.h" - -#define WIDGET_CHECK_TIME_SWITCH_STATUS 5 - -#define WIDGET_CHECK_WIDTH 25 -#define WIDGET_CHECK_HEIGHT 25 - -typedef struct widget_check -{ - int x, y; - bool_t status; - int time; - void (*fce_event)(void *); -} widget_check_t; - -extern widget_check_t* newWidgetCheck(int x, int y, bool_t status, void (*fce_event)(void *)); -extern void drawWidgetCheck(widget_check_t *p); -extern void eventWidgetCheck(widget_check_t *p); -extern void destroyWidgetCheck(widget_check_t *p); - -#endif - |