diff options
Diffstat (limited to 'scripts/kconfig/lxdialog/dialog.h')
-rw-r--r-- | scripts/kconfig/lxdialog/dialog.h | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/scripts/kconfig/lxdialog/dialog.h b/scripts/kconfig/lxdialog/dialog.h index a7cfdecc2409..8dea47f9d3e4 100644 --- a/scripts/kconfig/lxdialog/dialog.h +++ b/scripts/kconfig/lxdialog/dialog.h | |||
@@ -86,6 +86,9 @@ | |||
86 | #define ACS_DARROW 'v' | 86 | #define ACS_DARROW 'v' |
87 | #endif | 87 | #endif |
88 | 88 | ||
89 | /* error return codes */ | ||
90 | #define ERRDISPLAYTOOSMALL (KEY_MAX + 1) | ||
91 | |||
89 | /* | 92 | /* |
90 | * Color definitions | 93 | * Color definitions |
91 | */ | 94 | */ |
@@ -181,6 +184,7 @@ int item_is_tag(char tag); | |||
181 | 184 | ||
182 | /* generic key handlers */ | 185 | /* generic key handlers */ |
183 | int on_key_esc(WINDOW *win); | 186 | int on_key_esc(WINDOW *win); |
187 | int on_key_resize(void); | ||
184 | 188 | ||
185 | void init_dialog(const char *backtitle); | 189 | void init_dialog(const char *backtitle); |
186 | void reset_dialog(void); | 190 | void reset_dialog(void); |
@@ -199,8 +203,8 @@ int dialog_yesno(const char *title, const char *prompt, int height, int width); | |||
199 | int dialog_msgbox(const char *title, const char *prompt, int height, | 203 | int dialog_msgbox(const char *title, const char *prompt, int height, |
200 | int width, int pause); | 204 | int width, int pause); |
201 | int dialog_textbox(const char *title, const char *file, int height, int width); | 205 | int dialog_textbox(const char *title, const char *file, int height, int width); |
202 | int dialog_menu(const char *title, const char *prompt, int height, int width, | 206 | int dialog_menu(const char *title, const char *prompt, |
203 | int menu_height, const void *selected, int *s_scroll); | 207 | const void *selected, int *s_scroll); |
204 | int dialog_checklist(const char *title, const char *prompt, int height, | 208 | int dialog_checklist(const char *title, const char *prompt, int height, |
205 | int width, int list_height); | 209 | int width, int list_height); |
206 | extern char dialog_input_result[]; | 210 | extern char dialog_input_result[]; |