Move main_entry_decide function prototype to frontend.h

This commit is contained in:
twinaphex
2015-01-10 06:46:21 +01:00
parent 8cfdd30ca0
commit 5f26bbcfb9
2 changed files with 10 additions and 10 deletions
+10
View File
@@ -75,6 +75,16 @@ bool main_load_content(int argc, char **argv,
args_type() args, environment_get_t environ_get,
process_args_t process_args);
/**
* main_entry_decide:
*
* Runs RetroArch for one frame.
*
* Returns: -1 upon exiting, 0 if we want to
* iterate to the next frame.
**/
int main_entry_decide(signature(), args_type() args);
#ifdef __cplusplus
}
#endif
-10
View File
@@ -99,16 +99,6 @@ const frontend_ctx_driver_t *frontend_ctx_find_driver(const char *ident);
**/
const frontend_ctx_driver_t *frontend_ctx_init_first(void);
/**
* main_entry_decide:
*
* Runs RetroArch for one frame.
*
* Returns: -1 upon exiting, 0 if we want to
* iterate to the next frame.
**/
int main_entry_decide(signature(), args_type() args);
#ifdef __cplusplus
}
#endif