summaryrefslogtreecommitdiffstats
path: root/src/tui.h
diff options
context:
space:
mode:
authorandmarti1424 <andmarti@gmail.com>2017-04-05 23:35:38 -0300
committerandmarti1424 <andmarti@gmail.com>2017-04-05 23:35:38 -0300
commitf89bd0bd11631b676ec1894486e24759f0ffe853 (patch)
tree7283f91a6b6e0922486523bd8d069b2d0a9fb043 /src/tui.h
parent72706a74191583a2828215d2cf3bd7dee8e16eb6 (diff)
cleaned color.c
Diffstat (limited to 'src/tui.h')
-rw-r--r--src/tui.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/tui.h b/src/tui.h
index d733900..27b4589 100644
--- a/src/tui.h
+++ b/src/tui.h
@@ -1,8 +1,8 @@
#include <ncurses.h>
#include <wchar.h>
#include <lua.h>
+#include "color.h"
-#define N_INIT_PAIRS 19
#define DEFAULT_COLOR -1
#define BLACK COLOR_BLACK
#define RED COLOR_RED
@@ -47,3 +47,5 @@ void yyerror(char *err); // error routine for yacc (gram.y)
void show_text(char * val);
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();