working on add
[taskasaur.git] / headers / render.h
index 4232f92..453c525 100644 (file)
@@ -6,11 +6,16 @@
 
 enum TaskasaurColors {
     TS_SELECTED = 1,
-    TS_NONSELECTED
+    TS_NONSELECTED,
+    TS_MENU_SELECTED,
+    TS_MENU_NONSELECTED,
 };
 
 /* the ts is used to not conflict with builtin names */
 extern int init_tscurses(void);
 extern int exit_tscurses(void);
 
+extern int curs_on(void);
+extern int curs_off(void);
+
 #endif