init_menu
Low level initialisation of a menu.
Description
This function provides lower level access to the same functionality as
do_menu(), but allows you to combine a popup menu with your own program
control structures. It initialises a menu, returning a pointer to a menu
player object that can be used with update_menu() and shutdown_menu().
With these functions, you could implement your own version of do_menu()
with the lines:
MENU_PLAYER *player = init_menu(menu, x, y);
while (update_menu(player))
;
return shutdown_menu(player);
Related Discussions
The following threads each have code containing this keyword:
Note: You can click on the numbers to jump directly to the posts that reference this page.
Related Projects
The following projects include source code containing this keyword: