blob: 4f9ed0e94aa93a841c2e535b08c16a5ba716239d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#ifndef SAVE_DIALOG_H
# define SAVE_DIALOG_H
# define SAVEDIALOG_ACTIVE_TIME_INTERVAL 500
# define SAVE_DIALOG_SIZE_X 320
# define SAVE_DIALOG_SIZE_Y 120
# define SAVE_DIALOG_LOCATIN_X (WINDOW_SIZE_X/2 - SAVE_DIALOG_SIZE_X/2)
# define SAVE_DIALOG_LOCATIN_Y (WINDOW_SIZE_Y/2 - SAVE_DIALOG_SIZE_Y/2)
extern void save_dialog_init();
extern bool_t save_dialog_is_active();
extern void save_dialog_draw();
extern void save_dialog_event();
extern void save_dialog_quit();
#endif
|