X-Git-Url: https://git.danieliu.xyz/?a=blobdiff_plain;f=headers%2Frender.h;h=453c525b0833c9904c3c139abe9171d8dbb331de;hb=c2cc205fd4d6e73e1ee2e4ed1136dd9e291754d4;hp=3a5501f8ccd0f181eb42a23b85be10aaf64bac2f;hpb=b9f6674ee02c6eb557f2b4a1032774729aa67af0;p=taskasaur.git diff --git a/headers/render.h b/headers/render.h index 3a5501f..453c525 100644 --- a/headers/render.h +++ b/headers/render.h @@ -1,12 +1,21 @@ +#ifndef __RENDER_H__ +#define __RENDER_H__ + #include enum TaskasaurColors { - TS_SELECTED, - TS_NONSELECTED + TS_SELECTED = 1, + 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