summaryrefslogtreecommitdiffstats
path: root/src/hci
diff options
context:
space:
mode:
authorDan Lynch2006-06-21 12:31:59 +0200
committerDan Lynch2006-06-21 12:31:59 +0200
commitd77120541af8f87544a3e421cdc1e2178cd58842 (patch)
treebfcb7d06e337c17484985bc57290762046b412ca /src/hci
parent- added doxygen @file header (diff)
downloadipxe-d77120541af8f87544a3e421cdc1e2178cd58842.tar.gz
ipxe-d77120541af8f87544a3e421cdc1e2178cd58842.tar.xz
ipxe-d77120541af8f87544a3e421cdc1e2178cd58842.zip
- added doxygen @file header
Diffstat (limited to 'src/hci')
-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
*