mirror of
https://github.com/libretro/RetroArch.git
synced 2024-11-25 17:10:12 +00:00
21 lines
318 B
C
21 lines
318 B
C
#ifndef __RUN_AHEAD_H__
|
|
#define __RUN_AHEAD_H__
|
|
|
|
#include <stddef.h>
|
|
#include <boolean.h>
|
|
|
|
#include <retro_common_api.h>
|
|
|
|
RETRO_BEGIN_DECLS
|
|
|
|
void runahead_destroy(void);
|
|
|
|
void run_ahead(int runAheadCount, bool useSecondary);
|
|
|
|
bool want_fast_savestate(void);
|
|
bool get_hard_disable_audio(void);
|
|
|
|
RETRO_END_DECLS
|
|
|
|
#endif
|