RetroArch
menu_generic.h
Go to the documentation of this file.
1 /* RetroArch - A frontend for libretro.
2  * Copyright (C) 2010-2014 - Hans-Kristian Arntzen
3  * Copyright (C) 2011-2017 - Daniel De Matteis
4  * Copyright (C) 2012-2015 - Michael Lelli
5  *
6  * RetroArch is free software: you can redistribute it and/or modify it under the terms
7  * of the GNU General Public License as published by the Free Software Found-
8  * ation, either version 3 of the License, or (at your option) any later version.
9  *
10  * RetroArch is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
11  * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
12  * PURPOSE. See the GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License along with RetroArch.
15  * If not, see <http://www.gnu.org/licenses/>.
16  */
17 
18 #ifndef _MENU_GENERIC_H
19 #define _MENU_GENERIC_H
20 
21 #include <boolean.h>
22 
23 #include "../menu_driver.h"
24 #include "../menu_input.h"
25 
27 {
32 };
33 
34 int generic_menu_iterate(menu_handle_t *menu, void *userdata, enum menu_action action);
35 
36 bool generic_menu_init_list(void *data);
37 
38 #endif
Definition: menu_generic.h:29
Definition: ibxm.h:9
bool generic_menu_init_list(void *data)
Definition: menu_generic.c:265
Definition: menu_generic.h:30
int generic_menu_iterate(menu_handle_t *menu, void *userdata, enum menu_action action)
Definition: menu_generic.c:68
Definition: menu_driver.h:403
Definition: menu_generic.h:31
menu_action
Definition: menu_input.h:31
Definition: menu_generic.h:28
action_iterate_type
Definition: menu_generic.h:26