mirror of
https://github.com/CTCaer/RetroArch.git
synced 2024-12-17 15:59:57 +00:00
(UI companion) Add iterate function pointer to UI companion
This commit is contained in:
parent
f8a31effb0
commit
a5ddda8854
@ -50,5 +50,6 @@ const ui_companion_driver_t ui_companion_null = {
|
||||
ui_companion_null_deinit,
|
||||
NULL,
|
||||
NULL,
|
||||
NULL,
|
||||
"null",
|
||||
};
|
||||
|
@ -32,8 +32,9 @@ typedef struct ui_companion_driver
|
||||
{
|
||||
void *(*init)(void);
|
||||
void (*deinit)(void *data);
|
||||
void (*toggle_companion_ui)(void);
|
||||
void (*notify_content_loaded)(void);
|
||||
int (*iterate)(void *data, unsigned action);
|
||||
void (*toggle_companion_ui)(void *data);
|
||||
void (*notify_content_loaded)(void *data);
|
||||
|
||||
const char *ident;
|
||||
} ui_companion_driver_t;
|
||||
|
Loading…
Reference in New Issue
Block a user