colors on select
[taskasaur.git] / headers / render.h
1
2 #ifndef __RENDER_H__
3 #define __RENDER_H__
4
5 #include <ncurses.h>
6
7 enum TaskasaurColors {
8     TS_SELECTED = 1,
9     TS_NONSELECTED
10 };
11
12 /* the ts is used to not conflict with builtin names */
13 extern int init_tscurses(void);
14 extern int exit_tscurses(void);
15
16 #endif