mirror of
https://github.com/CTCaer/RetroArch.git
synced 2024-12-28 21:55:27 +00:00
74 lines
2.2 KiB
C
74 lines
2.2 KiB
C
/* RetroArch - A frontend for libretro.
|
|
* Copyright (C) 2010-2013 - Hans-Kristian Arntzen
|
|
* Copyright (C) 2011-2013 - Daniel De Matteis
|
|
*
|
|
* RetroArch is free software: you can redistribute it and/or modify it under the terms
|
|
* of the GNU General Public License as published by the Free Software Found-
|
|
* ation, either version 3 of the License, or (at your option) any later version.
|
|
*
|
|
* RetroArch is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
|
|
* without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
|
|
* PURPOSE. See the GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License along with RetroArch.
|
|
* If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#ifndef _RMENU_STACK_H_
|
|
#define _RMENU_STACK_H_
|
|
|
|
typedef struct
|
|
{
|
|
char title[32];
|
|
unsigned char enum_id;
|
|
unsigned char selected;
|
|
unsigned char page;
|
|
unsigned char first_setting;
|
|
unsigned char max_settings;
|
|
unsigned char category_id;
|
|
int (*entry)(void *data, void *state);
|
|
void (*input_process)(void *data, void *state);
|
|
void (*input_poll)(void *data, void *state);
|
|
void (*browser_draw)(void *data);
|
|
} menu;
|
|
|
|
typedef struct
|
|
{
|
|
uint64_t input;
|
|
uint64_t old_state;
|
|
#ifdef HAVE_OSKUTIL
|
|
bool osk_unbind_after_finish;
|
|
unsigned osk_param;
|
|
bool (*osk_init)(void *data);
|
|
bool (*osk_callback)(void *data);
|
|
#endif
|
|
void (*init_resources)(void *data);
|
|
void (*free_resources)(void *data);
|
|
} rmenu_state_t;
|
|
|
|
// iterate forward declarations
|
|
int select_file(void *data, void *state);
|
|
int select_directory(void *data, void *state);
|
|
int select_setting(void *data, void *state);
|
|
int select_rom(void *data, void *state);
|
|
int ingame_menu_resize(void *data, void *state);
|
|
int ingame_menu_screenshot(void *data, void *state);
|
|
int ingame_menu(void *data, void *state);
|
|
|
|
// input poll forward declarations
|
|
void rmenu_input_poll(void *data, void *state);
|
|
|
|
// input process forward declarations
|
|
void rmenu_input_process(void *data, void *state);
|
|
|
|
// browser_draw forward declarations
|
|
void browser_render(void *data);
|
|
|
|
// init resources forward declarations
|
|
void init_filebrowser(void *data);
|
|
|
|
// free resources forward declarations
|
|
void free_filebrowser(void *data);
|
|
|
|
#endif
|