summaryrefslogtreecommitdiff
path: root/apps/menu.h
diff options
context:
space:
mode:
Diffstat (limited to 'apps/menu.h')
-rw-r--r--apps/menu.h20
1 files changed, 0 insertions, 20 deletions
diff --git a/apps/menu.h b/apps/menu.h
index 7e08ef5aac..7b26bbc90c 100644
--- a/apps/menu.h
+++ b/apps/menu.h
@@ -35,8 +35,6 @@ enum menu_item_type {
35 MT_FUNCTION_CALL, /* call a function from the menus */ 35 MT_FUNCTION_CALL, /* call a function from the menus */
36 MT_RETURN_ID, /* returns the position of the selected item (starting at 0)*/ 36 MT_RETURN_ID, /* returns the position of the selected item (starting at 0)*/
37 MT_RETURN_VALUE, /* returns a value associated with an item */ 37 MT_RETURN_VALUE, /* returns a value associated with an item */
38 MT_OLD_MENU, /* used so we can wrap the old menu api
39 around the new api. Noone else should use this */
40}; 38};
41#define MENU_TYPE_MASK 0xF /* MT_* type */ 39#define MENU_TYPE_MASK 0xF /* MT_* type */
42 40
@@ -192,22 +190,4 @@ bool do_setting_from_menu(const struct menu_item_ex *temp);
192 { (void*)name##_},{.callback_and_desc = & name##__}}; 190 { (void*)name##_},{.callback_and_desc = & name##__}};
193 191
194 192
195/* OLD API - This is only here for plugin compatability now, will be dropped ASAP */
196struct menu_item {
197 unsigned char *desc; /* string or ID */
198 bool (*function) (void); /* return true if USB was connected */
199};
200
201/* if button2 == button3 == NULL, button1 is the menu title */
202int menu_init(const struct menu_item* mitems, int count,
203 int (*callback)(int, int),
204 const char *button1, const char *button2, const char *button3);
205void menu_exit(int menu);
206
207 /* Returns MENU_* define from root_menu.h, or number of selected menu item*/
208int menu_show(int m);
209
210bool menu_run(int menu);
211int menu_count(int menu);
212
213#endif /* End __MENU_H__ */ 193#endif /* End __MENU_H__ */