[mucurses] Implement curs_set() to control cursor visibility

Signed-off-by: Michael Brown <mcb30@ipxe.org>
This commit is contained in:
Michael Brown
2013-12-02 17:23:09 +00:00
parent 135bf35b11
commit 936971d0ed
4 changed files with 24 additions and 0 deletions

View File

@@ -75,6 +75,13 @@ typedef struct _curses_screen {
* @ret FALSE no character waiting in stream
*/
bool ( *peek ) ( struct _curses_screen *scr );
/**
* Set cursor visibility
*
* @v scr screen on which to operate
* @v visibility cursor visibility
*/
void ( * cursor ) ( struct _curses_screen *scr, int visibility );
} SCREEN;
/** Curses Window struct */