Jason Hobbs | b69bf52 | 2011-08-23 11:06:49 +0000 | [diff] [blame] | 1 | /* |
| 2 | * Copyright 2010-2011 Calxeda, Inc. |
| 3 | * |
Wolfgang Denk | 1a45966 | 2013-07-08 09:37:19 +0200 | [diff] [blame] | 4 | * SPDX-License-Identifier: GPL-2.0+ |
Jason Hobbs | b69bf52 | 2011-08-23 11:06:49 +0000 | [diff] [blame] | 5 | */ |
| 6 | |
| 7 | #ifndef __MENU_H__ |
| 8 | #define __MENU_H__ |
| 9 | |
| 10 | struct menu; |
| 11 | |
Jason Hobbs | b41bc5a | 2011-08-23 11:06:50 +0000 | [diff] [blame] | 12 | struct menu *menu_create(char *title, int timeout, int prompt, |
Pali Rohár | fc9d64f | 2013-03-23 14:50:40 +0000 | [diff] [blame] | 13 | void (*item_data_print)(void *), |
| 14 | char *(*item_choice)(void *), |
| 15 | void *item_choice_data); |
Jason Hobbs | b69bf52 | 2011-08-23 11:06:49 +0000 | [diff] [blame] | 16 | int menu_default_set(struct menu *m, char *item_key); |
| 17 | int menu_get_choice(struct menu *m, void **choice); |
| 18 | int menu_item_add(struct menu *m, char *item_key, void *item_data); |
| 19 | int menu_destroy(struct menu *m); |
Heiko Schocher | e0611dd | 2012-01-16 21:13:20 +0000 | [diff] [blame] | 20 | void menu_display_statusline(struct menu *m); |
Anatolij Gustschin | 6a3439f | 2013-03-23 14:52:04 +0000 | [diff] [blame] | 21 | int menu_default_choice(struct menu *m, void **choice); |
Jason Hobbs | b69bf52 | 2011-08-23 11:06:49 +0000 | [diff] [blame] | 22 | |
Heiko Schocher | 317d6c5 | 2012-01-16 21:13:35 +0000 | [diff] [blame] | 23 | #if defined(CONFIG_MENU_SHOW) |
| 24 | int menu_show(int bootdelay); |
| 25 | #endif |
Jason Hobbs | b69bf52 | 2011-08-23 11:06:49 +0000 | [diff] [blame] | 26 | #endif /* __MENU_H__ */ |