diff options
Diffstat (limited to 'src/ui_nask.h')
-rw-r--r-- | src/ui_nask.h | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/src/ui_nask.h b/src/ui_nask.h new file mode 100644 index 0000000..3d99987 --- /dev/null +++ b/src/ui_nask.h @@ -0,0 +1,17 @@ +#ifndef UI_ELEMENTS_H +#define UI_ELEMENTS_H 1 + +#include "config.h" +#include "ui_txtwindow.h" + + +void +show_info_wnd(struct txtwindow *wnd, char *title, char *text, chtype fore, chtype back, bool activate, bool blink); + +void +init_ui_elements(WINDOW *wnd_main, unsigned int max_x, unsigned int max_y); + +void +free_ui_elements(void); + +#endif |