aboutsummaryrefslogtreecommitdiffstats
path: root/lib/tbi/win.h
diff options
context:
space:
mode:
Diffstat (limited to 'lib/tbi/win.h')
-rw-r--r--lib/tbi/win.h20
1 files changed, 20 insertions, 0 deletions
diff --git a/lib/tbi/win.h b/lib/tbi/win.h
index 2de5310..1539877 100644
--- a/lib/tbi/win.h
+++ b/lib/tbi/win.h
@@ -54,4 +54,24 @@ struct window *newwin(struct screen *s,
*/
VOID delwin(struct window *w);
+/*
+ * Sets the current attributes of the given window
+ *
+ * w: the window on which to operate
+ * attr: the attributes
+ *
+ * return: VOID
+*/
+VOID wattrset(struct window *w, INT32 attr);
+
+/*
+ * Resets the current attributes of the given window to standard screen
+ * attributes
+ *
+ * w: the window on which to operate
+ *
+ * return: VOID
+*/
+VOID wattroff(struct window *w);
+
#endif /* UFM_TBI_WINDOW_H */