]> git.ipfire.org Git - thirdparty/u-boot.git/blame - include/menu.h
efi_loader: variable: attributes may not be changed if a variable exists
[thirdparty/u-boot.git] / include / menu.h
CommitLineData
83d290c5 1/* SPDX-License-Identifier: GPL-2.0+ */
b69bf52d
JH
2/*
3 * Copyright 2010-2011 Calxeda, Inc.
b69bf52d
JH
4 */
5
6#ifndef __MENU_H__
7#define __MENU_H__
8
9struct menu;
10
b41bc5a8 11struct menu *menu_create(char *title, int timeout, int prompt,
fc9d64ff
T
12 void (*item_data_print)(void *),
13 char *(*item_choice)(void *),
14 void *item_choice_data);
b69bf52d
JH
15int menu_default_set(struct menu *m, char *item_key);
16int menu_get_choice(struct menu *m, void **choice);
17int menu_item_add(struct menu *m, char *item_key, void *item_data);
18int menu_destroy(struct menu *m);
e0611dd9 19void menu_display_statusline(struct menu *m);
6a3439fd 20int menu_default_choice(struct menu *m, void **choice);
b69bf52d 21
317d6c57
HS
22#if defined(CONFIG_MENU_SHOW)
23int menu_show(int bootdelay);
24#endif
b69bf52d 25#endif /* __MENU_H__ */