This commit is contained in:
twinaphex 2015-12-12 23:32:50 +01:00
parent 2f8131b74c
commit 825b259650
2 changed files with 1 additions and 20 deletions

View File

@ -528,7 +528,7 @@ int menu_common_load_content(
*
* Frees a menu handle
**/
void menu_free(menu_handle_t *menu)
static void menu_free(menu_handle_t *menu)
{
if (!menu)
return;

View File

@ -403,27 +403,8 @@ bool menu_driver_ctl(enum rarch_menu_ctl_state state, void *data);
**/
void *menu_init(const void *data);
/**
* menu_iterate:
* @render_this_frame : Render this frame or not
* @action : Associated action for this frame
*
* Runs RetroArch menu for one frame.
*
* Returns: 0 on success, -1 if we need to quit out of the loop.
**/
int menu_iterate(bool render_this_frame, enum menu_action action);
int menu_iterate_render(void *data, void *userdata);
/**
* menu_free:
* @menu : Menu handle.
*
* Frees a menu handle
**/
void menu_free(menu_handle_t *menu);
/**
* menu_load_content:
* type : Type of content to load.