Those sets haven't been merged.
[neverball] / ball / util.h
1 #ifndef UTIL_H
2 #define UTIL_H
3
4 #include "set.h"
5
6 /*---------------------------------------------------------------------------*/
7
8 #define GUI_NULL_MASK 0x1000
9 #define GUI_NULL -100
10 #define GUI_BACK -101
11 #define GUI_PREV -102
12 #define GUI_NEXT -103
13 #define GUI_BS   -104
14 #define GUI_CL   -105
15
16 void gui_most_coins(int, int);
17 void set_most_coins(const struct score *, int);
18 void gui_best_times(int, int);
19 void set_best_times(const struct score *, int, int);
20
21 void gui_keyboard(int);
22 void gui_keyboard_lock(void);
23 char gui_keyboard_char(char);
24
25 int  gui_back_prev_next(int, int, int);
26 int  gui_maybe(int, const char *, int, int);
27
28 /*---------------------------------------------------------------------------*/
29
30 #endif