.. | .. |
---|
5 | 5 | #include <stdarg.h> |
---|
6 | 6 | |
---|
7 | 7 | int ui__getch(int delay_secs); |
---|
8 | | -int ui__popup_menu(int argc, char * const argv[]); |
---|
| 8 | +int ui__popup_menu(int argc, char * const argv[], int *keyp); |
---|
9 | 9 | int ui__help_window(const char *text); |
---|
10 | 10 | int ui__dialog_yesno(const char *msg); |
---|
| 11 | +void __ui__info_window(const char *title, const char *text, const char *exit_msg); |
---|
| 12 | +void ui__info_window(const char *title, const char *text); |
---|
11 | 13 | int ui__question_window(const char *title, const char *text, |
---|
12 | 14 | const char *exit_msg, int delay_secs); |
---|
13 | 15 | |
---|