]>
git.ipfire.org Git - people/ms/u-boot.git/blob - include/menu.h
2 * Copyright 2010-2011 Calxeda, Inc.
4 * SPDX-License-Identifier: GPL-2.0+
12 struct menu
*menu_create(char *title
, int timeout
, int prompt
,
13 void (*item_data_print
)(void *),
14 char *(*item_choice
)(void *),
15 void *item_choice_data
);
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
);
20 void menu_display_statusline(struct menu
*m
);
21 int menu_default_choice(struct menu
*m
, void **choice
);
23 #if defined(CONFIG_MENU_SHOW)
24 int menu_show(int bootdelay
);
26 #endif /* __MENU_H__ */