diff options
| author | Dan Lynch | 2006-06-21 12:31:59 +0200 |
|---|---|---|
| committer | Dan Lynch | 2006-06-21 12:31:59 +0200 |
| commit | d77120541af8f87544a3e421cdc1e2178cd58842 (patch) | |
| tree | bfcb7d06e337c17484985bc57290762046b412ca /src/hci/mucurses | |
| parent | - added doxygen @file header (diff) | |
| download | ipxe-d77120541af8f87544a3e421cdc1e2178cd58842.tar.gz ipxe-d77120541af8f87544a3e421cdc1e2178cd58842.tar.xz ipxe-d77120541af8f87544a3e421cdc1e2178cd58842.zip | |
- added doxygen @file header
Diffstat (limited to 'src/hci/mucurses')
| -rw-r--r-- | src/hci/mucurses/winattrs.c | 16 |
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 * |
