]>
Commit | Line | Data |
---|---|---|
b69bf52d JH |
1 | /* |
2 | * Copyright 2010-2011 Calxeda, Inc. | |
3 | * | |
1a459660 | 4 | * SPDX-License-Identifier: GPL-2.0+ |
b69bf52d JH |
5 | */ |
6 | ||
7 | #ifndef __MENU_H__ | |
8 | #define __MENU_H__ | |
9 | ||
10 | struct menu; | |
11 | ||
b41bc5a8 | 12 | struct menu *menu_create(char *title, int timeout, int prompt, |
fc9d64ff T |
13 | void (*item_data_print)(void *), |
14 | char *(*item_choice)(void *), | |
15 | void *item_choice_data); | |
b69bf52d JH |
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); | |
e0611dd9 | 20 | void menu_display_statusline(struct menu *m); |
6a3439fd | 21 | int menu_default_choice(struct menu *m, void **choice); |
b69bf52d | 22 | |
317d6c57 HS |
23 | #if defined(CONFIG_MENU_SHOW) |
24 | int menu_show(int bootdelay); | |
25 | #endif | |
b69bf52d | 26 | #endif /* __MENU_H__ */ |