blob: 063cd196bdfc9402ab9fa476b633170de3af5d63 [file] [log] [blame]
Jason Hobbsb69bf522011-08-23 11:06:49 +00001/*
2 * Copyright 2010-2011 Calxeda, Inc.
3 *
Wolfgang Denk1a459662013-07-08 09:37:19 +02004 * SPDX-License-Identifier: GPL-2.0+
Jason Hobbsb69bf522011-08-23 11:06:49 +00005 */
6
7#ifndef __MENU_H__
8#define __MENU_H__
9
10struct menu;
11
Jason Hobbsb41bc5a2011-08-23 11:06:50 +000012struct menu *menu_create(char *title, int timeout, int prompt,
Pali Rohárfc9d64f2013-03-23 14:50:40 +000013 void (*item_data_print)(void *),
14 char *(*item_choice)(void *),
15 void *item_choice_data);
Jason Hobbsb69bf522011-08-23 11:06:49 +000016int menu_default_set(struct menu *m, char *item_key);
17int menu_get_choice(struct menu *m, void **choice);
18int menu_item_add(struct menu *m, char *item_key, void *item_data);
19int menu_destroy(struct menu *m);
Heiko Schochere0611dd2012-01-16 21:13:20 +000020void menu_display_statusline(struct menu *m);
Anatolij Gustschin6a3439f2013-03-23 14:52:04 +000021int menu_default_choice(struct menu *m, void **choice);
Jason Hobbsb69bf522011-08-23 11:06:49 +000022
Heiko Schocher317d6c52012-01-16 21:13:35 +000023#if defined(CONFIG_MENU_SHOW)
24int menu_show(int bootdelay);
25#endif
Jason Hobbsb69bf522011-08-23 11:06:49 +000026#endif /* __MENU_H__ */