mirror of https://github.com/ipxe/ipxe.git
- added doxygen @file header
parent
172a568af5
commit
d77120541a
|
@ -1,5 +1,21 @@
|
||||||
#include <curses.h>
|
#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
|
* Turn off attributes in a window
|
||||||
*
|
*
|
||||||
|
|
Loading…
Reference in New Issue