blob: 3d99987fabdb097206cf4e52e9a70a5ce876ef77 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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
|