DEVELOPER'S TOOLBOX NAVIGATION: HUB |
Up |
Download |
Tree
Next: 6.5 glutAddSubMenu
Up: 6 Menu Management
Previous: 6.3 glutDestroyMenu
glutAddMenuEntry adds a menu entry to the bottom of the current menu.
Usage
void glutAddMenuEntry(char *name, int value);
- name
-
ASCII character string to display in the menu entry.
- value
-
Value to return to the menu's callback function if the menu entry is selected.
Description
glutAddMenuEntry adds a menu entry to the bottom of the current menu.
The string name will be displayed for the newly added menu entry.
If the menu entry is selected by the user, the menu's callback will be called
passing value as the callback's parameter.
Next: 6.5 glutAddSubMenu
Up: 6 Menu Management
Previous: 6.3 glutDestroyMenu
Mark Kilgard
Fri Feb 23 08:05:02 PST 1996