mirror of
https://github.com/CTCaer/RetroArch.git
synced 2025-01-31 00:22:31 +00:00
(frontend_context) Implement process_events
This commit is contained in:
parent
ac8f57e679
commit
e19d2320b2
@ -39,6 +39,7 @@ typedef struct frontend_ctx_driver
|
||||
void (*exitspawn)(void);
|
||||
|
||||
int (*process_args)(int argc, char *argv[]);
|
||||
int (*process_events)(void);
|
||||
void (*exec)(const char *, bool);
|
||||
void (*shutdown)(bool);
|
||||
|
||||
|
@ -526,6 +526,7 @@ const frontend_ctx_driver_t frontend_ctx_gx = {
|
||||
system_deinit, /* deinit */
|
||||
system_exitspawn, /* exitspawn */
|
||||
system_process_args, /* process_args */
|
||||
NULL, /* process_events */
|
||||
system_exec, /* exec */
|
||||
NULL, /* shutdown */
|
||||
"gx",
|
||||
|
@ -478,6 +478,7 @@ const frontend_ctx_driver_t frontend_ctx_ps3 = {
|
||||
system_deinit, /* deinit */
|
||||
system_exitspawn, /* exitspawn */
|
||||
system_process_args, /* process_args */
|
||||
NULL, /* process_events */
|
||||
system_exec, /* exec */
|
||||
NULL, /* shutdown */
|
||||
"ps3",
|
||||
|
@ -116,6 +116,7 @@ const frontend_ctx_driver_t frontend_ctx_psp = {
|
||||
system_deinit, /* deinit */
|
||||
NULL, /* exitspawn */
|
||||
NULL, /* process_args */
|
||||
NULL, /* process_events */
|
||||
NULL, /* exec */
|
||||
NULL, /* shutdown */
|
||||
"psp",
|
||||
|
@ -53,6 +53,7 @@ const frontend_ctx_driver_t frontend_ctx_qnx = {
|
||||
NULL, /* deinit */
|
||||
NULL, /* exitspawn */
|
||||
NULL, /* process_args */
|
||||
NULL, /* process_events */
|
||||
NULL, /* exec */
|
||||
system_shutdown, /* shutdown */
|
||||
"qnx",
|
||||
|
@ -362,6 +362,7 @@ const frontend_ctx_driver_t frontend_ctx_xdk = {
|
||||
NULL, /* deinit */
|
||||
system_exitspawn, /* exitspawn */
|
||||
system_process_args, /* process_args */
|
||||
NULL, /* process_events */
|
||||
system_exec, /* exec */
|
||||
NULL, /* shutdown */
|
||||
"xdk",
|
||||
|
Loading…
x
Reference in New Issue
Block a user