diff --git a/retroarch.h b/retroarch.h index c250b30f2b..cb3ed6b7b8 100644 --- a/retroarch.h +++ b/retroarch.h @@ -83,9 +83,6 @@ void retroarch_override_setting_unset(enum rarch_override_setting enum_idx, void bool retroarch_override_setting_is_set(enum rarch_override_setting enum_idx, void *data); -void runloop_set_current_core_type( - enum rarch_core_type type, bool explicitly_set); - const char* retroarch_get_shader_preset(void); /** @@ -109,25 +106,6 @@ unsigned content_get_subsystem_rom_id(void); int content_get_subsystem(void); -/** - * runloop_iterate: - * - * Run Libretro core in RetroArch for one frame. - * - * Returns: 0 on successful run, - * Returns 1 if we have to wait until button input in order - * to wake up the loop. - * Returns -1 if we forcibly quit out of the - * RetroArch iteration loop. - **/ -int runloop_iterate(void); - -void runloop_msg_queue_push(const char *msg, - unsigned prio, unsigned duration, - bool flush, - char *title, - enum message_queue_icon icon, enum message_queue_category category); - void retroarch_menu_running(void); void retroarch_menu_running_finished(bool quit); diff --git a/runloop.h b/runloop.h index d80fb9b81a..caaf2b3031 100644 --- a/runloop.h +++ b/runloop.h @@ -333,6 +333,31 @@ void runloop_path_fill_names(void); **/ bool runloop_environment_cb(unsigned cmd, void *data); +void runloop_msg_queue_push(const char *msg, + unsigned prio, unsigned duration, + bool flush, + char *title, + enum message_queue_icon icon, + enum message_queue_category category); + +void runloop_set_current_core_type( + enum rarch_core_type type, bool explicitly_set); + +/** + * runloop_iterate: + * + * Run Libretro core in RetroArch for one frame. + * + * Returns: 0 on successful run, + * Returns 1 if we have to wait until button input in order + * to wake up the loop. + * Returns -1 if we forcibly quit out of the + * RetroArch iteration loop. + **/ +int runloop_iterate(void); + + + runloop_state_t *runloop_state_get_ptr(void); RETRO_END_DECLS