diff --git a/frontend/frontend_context.h b/frontend/frontend_context.h index f5334412c6..d9d290de59 100644 --- a/frontend/frontend_context.h +++ b/frontend/frontend_context.h @@ -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); diff --git a/frontend/platform/platform_gx.c b/frontend/platform/platform_gx.c index 09fe66d390..cb313af8ba 100644 --- a/frontend/platform/platform_gx.c +++ b/frontend/platform/platform_gx.c @@ -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", diff --git a/frontend/platform/platform_ps3.c b/frontend/platform/platform_ps3.c index 70a29ba855..95e3d0ad1d 100644 --- a/frontend/platform/platform_ps3.c +++ b/frontend/platform/platform_ps3.c @@ -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", diff --git a/frontend/platform/platform_psp.c b/frontend/platform/platform_psp.c index 02b419601b..aa2b04c10c 100644 --- a/frontend/platform/platform_psp.c +++ b/frontend/platform/platform_psp.c @@ -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", diff --git a/frontend/platform/platform_qnx.c b/frontend/platform/platform_qnx.c index 3f3533c65a..b83f4e30cf 100644 --- a/frontend/platform/platform_qnx.c +++ b/frontend/platform/platform_qnx.c @@ -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", diff --git a/frontend/platform/platform_xdk.c b/frontend/platform/platform_xdk.c index 17c9ff7eec..d021b8230b 100644 --- a/frontend/platform/platform_xdk.c +++ b/frontend/platform/platform_xdk.c @@ -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",