1UNTITLED LOCAL UNTITLED
2
4 glutAddSubMenu — Append a submenu to the current menu.
5
7 OpenGLUT - menus
8
10 #include <openglut.h>
11
12 void
13 glutAddSubMenu(const char *label, int subMenuID);
14
16 label Submenu item text
17
18 subMenuID Submenu identifier
19
21 Attaches an existing menu as a submenu of the current menu. label is
22 the text used for the item in the menu. subMenuID is the identifier of
23 an existing menu to be appended as a submenu.
24
25 The submenu is added to the end of the menu.
26
28 glutCreateMenu(3) glutAddMenuEntry(3)
29
30
31
32
33 Epoch