curses
[oftp] / src / tgfx.h
index 49f93b0..e26b7a0 100644 (file)
@@ -4,10 +4,26 @@
 #include <stdarg.h>
 
 enum {
+       TGFX_BLACK,
+       TGFX_BLUE,
+       TGFX_GREEN,
+       TGFX_CYAN,
+       TGFX_RED,
+       TGFX_MAGENTA,
+       TGFX_YELLOW,
+       TGFX_WHITE
+};
+
+enum {
        TGFX_FRAME              = 1,
        TGFX_SHADOW             = 2
 };
 
+void tg_init(void);
+void tg_cleanup(void);
+
+void tg_redraw(void);
+
 void tg_clear(void);
 
 void tg_fgcolor(int col);