| MENU_POST(3) | Library Functions Manual | MENU_POST(3) |
post_menu,
unpost_menu — post (draw) or
unpost a menu
Curses Menu Library (libmenu, -lmenu)
#include
<menu.h>
int
post_menu(MENU
*menu);
int
unpost_menu(MENU
*menu);
The
post_menu()
function causes the menu to be drawn on the screen. Any functions defined by
either
set_menu_init()
or
set_item_init()
(see menu_hook(3)) are
called before the menu is placed on the screen. The
unpost_menu()
does the opposite, it removes a menu from the screen. Any functions defined
by both
set_menu_term()
and
set_item_term()
(see menu_hook(3)) are
called prior to the menu's removal.
The functions return one of the following error values:
E_OKE_SYSTEM_ERRORE_BAD_ARGUMENTE_POSTEDE_BAD_STATEE_NO_ROOME_NOT_CONNECTEDThe header <menu.h> automatically includes both <curses.h> and <eti.h>.
| September 10, 1999 | NetBSD 11.0 |