diff -r eeea35fbf182 -r 1cca90ce0481 kconfig/lxdialog/dialog.h --- a/kconfig/lxdialog/dialog.h Sat Feb 24 11:00:05 2007 +0000 +++ b/kconfig/lxdialog/dialog.h Fri Oct 17 12:47:53 2008 +0000 @@ -26,6 +26,12 @@ #include #include +#ifndef KBUILD_NO_NLS +# include +#else +# define gettext(Msgid) ((const char *) (Msgid)) +#endif + #ifdef __sun__ #define CURS_MACROS #endif @@ -187,9 +193,9 @@ int on_key_esc(WINDOW *win); int on_key_resize(void); -void init_dialog(const char *backtitle); -void reset_dialog(void); -void end_dialog(void); +int init_dialog(const char *backtitle); +void set_dialog_backtitle(const char *backtitle); +void end_dialog(int x, int y); void attr_clear(WINDOW * win, int height, int width, chtype attr); void dialog_clear(void); void print_autowrap(WINDOW * win, const char *prompt, int width, int y, int x);