mirror of
https://github.com/libretro/RetroArch
synced 2025-01-30 21:32:45 +00:00
Added perform_action to menu_ctx_driver
This commit is contained in:
parent
9c5113d6da
commit
90d646dc45
@ -674,4 +674,5 @@ menu_ctx_driver_t menu_ctx_glui = {
|
|||||||
NULL,
|
NULL,
|
||||||
glui_load_wallpaper,
|
glui_load_wallpaper,
|
||||||
"glui",
|
"glui",
|
||||||
|
NULL,
|
||||||
};
|
};
|
||||||
|
@ -48,4 +48,5 @@ menu_ctx_driver_t menu_ctx_null = {
|
|||||||
NULL, // list_set_selection
|
NULL, // list_set_selection
|
||||||
NULL,
|
NULL,
|
||||||
"null",
|
"null",
|
||||||
|
NULL,
|
||||||
};
|
};
|
||||||
|
@ -654,4 +654,5 @@ menu_ctx_driver_t menu_ctx_rgui = {
|
|||||||
NULL,
|
NULL,
|
||||||
NULL,
|
NULL,
|
||||||
"rgui",
|
"rgui",
|
||||||
|
NULL,
|
||||||
};
|
};
|
||||||
|
@ -329,4 +329,5 @@ menu_ctx_driver_t menu_ctx_rmenu = {
|
|||||||
NULL,
|
NULL,
|
||||||
NULL,
|
NULL,
|
||||||
"rmenu",
|
"rmenu",
|
||||||
|
NULL,
|
||||||
};
|
};
|
||||||
|
@ -683,4 +683,5 @@ menu_ctx_driver_t menu_ctx_rmenu_xui = {
|
|||||||
rmenu_xui_list_set_selection,
|
rmenu_xui_list_set_selection,
|
||||||
NULL,
|
NULL,
|
||||||
"rmenu_xui",
|
"rmenu_xui",
|
||||||
|
NULL,
|
||||||
};
|
};
|
||||||
|
@ -1936,4 +1936,5 @@ menu_ctx_driver_t menu_ctx_xmb = {
|
|||||||
NULL,
|
NULL,
|
||||||
xmb_load_wallpaper,
|
xmb_load_wallpaper,
|
||||||
"xmb",
|
"xmb",
|
||||||
|
NULL,
|
||||||
};
|
};
|
||||||
|
@ -254,6 +254,7 @@ typedef struct menu_ctx_driver
|
|||||||
void (*list_set_selection)(file_list_t *list);
|
void (*list_set_selection)(file_list_t *list);
|
||||||
bool (*load_background)(void *data);
|
bool (*load_background)(void *data);
|
||||||
const char *ident;
|
const char *ident;
|
||||||
|
bool (*perform_action)(unsigned action);
|
||||||
} menu_ctx_driver_t;
|
} menu_ctx_driver_t;
|
||||||
|
|
||||||
extern menu_ctx_driver_t menu_ctx_rmenu;
|
extern menu_ctx_driver_t menu_ctx_rmenu;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user