Lines Matching refs:ITEM
57 typedef struct ITEM { struct
68 struct ITEM *left; argument
69 struct ITEM *right; argument
70 struct ITEM *up; argument
71 struct ITEM *down; argument
72 } ITEM; typedef
95 ITEM **items;
97 ITEM *curitem; /* Current item */
135 extern ITEM **menu_items(MENU *),
138 extern MENU *new_menu(ITEM **);
139 extern OPTIONS item_opts(ITEM *),
147 extern char *item_description(ITEM *),
148 *item_name(ITEM *),
149 *item_userptr(ITEM *),
156 extern int free_item(ITEM *),
159 item_index(ITEM *),
160 item_opts_off(ITEM *, OPTIONS),
161 item_opts_on(ITEM *, OPTIONS),
162 item_value(ITEM *),
163 item_visible(ITEM *),
171 set_current_item(MENU *, ITEM *),
173 set_item_opts(ITEM *, OPTIONS),
175 set_item_userptr(ITEM *, char *),
176 set_item_value(ITEM *, int),
182 set_menu_items(MENU *, ITEM **),
198 extern ITEM **menu_items(),