blob: a126955b47051c2f0dfb5a0879b60115fe0b4dd8 (
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 saveDialog_init();
extern bool_t saveDialog_is_active();
extern void saveDialog_draw();
extern void saveDialog_event();
extern void saveDialog_quit();
#endif
|