(frontend_context) Implement process_events

This commit is contained in:
twinaphex 2013-07-27 17:42:09 +02:00
parent ac8f57e679
commit e19d2320b2
6 changed files with 6 additions and 0 deletions

View File

@ -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);

View File

@ -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",

View File

@ -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",

View File

@ -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",

View File

@ -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",

View File

@ -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",