summaryrefslogtreecommitdiffstats
path: root/src/tui.h
diff options
context:
space:
mode:
authorandmarti1424 <andmarti@gmail.com>2017-04-05 23:56:32 -0300
committerandmarti1424 <andmarti@gmail.com>2017-04-05 23:56:32 -0300
commita80288e0a2110b5b8c7362f8ee3b28a69d99d870 (patch)
tree1321ebe1448297382e087f4c74dc42b558c3d217 /src/tui.h
parentf89bd0bd11631b676ec1894486e24759f0ffe853 (diff)
more work on isolating ui
Diffstat (limited to 'src/tui.h')
-rw-r--r--src/tui.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/tui.h b/src/tui.h
index 27b4589..b7fef2f 100644
--- a/src/tui.h
+++ b/src/tui.h
@@ -18,8 +18,8 @@ extern unsigned int curmode;
extern struct srange * ranges;
extern struct ent ** p;
-void start_screen();
-void stop_screen();
+void ui_start_screen();
+void ui_stop_screen();
int ui_getch(wint_t * wd);
int ui_getch_b(wint_t * wd);
void ui_clr_header(int row);
@@ -49,3 +49,4 @@ void ui_bail(lua_State *L, char * msg);
char * ui_query(char * initial_msg);
void ui_set_ucolor(WINDOW * w, struct ucolor * uc);
void ui_start_colors();
+void ui_sc_msg(char * s, int type, ...);