summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/hci/mucurses/winattrs.c16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/hci/mucurses/winattrs.c b/src/hci/mucurses/winattrs.c
index f31fdac55..53f228d2d 100644
--- a/src/hci/mucurses/winattrs.c
+++ b/src/hci/mucurses/winattrs.c
@@ -1,5 +1,21 @@
#include <curses.h>
+/** @file
+ *
+ * MuCurses window attribute functions
+ *
+ */
+
+/**
+ * Get the background rendition attributes for a window
+ *
+ * @v *win subject window
+ * @ret ch chtype rendition representation
+ */
+inline chtype getbkgd ( WINDOW *win ) {
+ return win->attrs;
+}
+
/**
* Turn off attributes in a window
*