mirror of
https://github.com/libretro/RetroArch
synced 2025-02-06 09:40:06 +00:00
15 lines
228 B
C
15 lines
228 B
C
#ifndef __RUN_AHEAD_H__
|
|
#define __RUN_AHEAD_H__
|
|
|
|
#include <boolean.h>
|
|
#include <retro_common_api.h>
|
|
|
|
RETRO_BEGIN_DECLS
|
|
|
|
void runahead_destroy(void);
|
|
void run_ahead(int runAheadCount, bool useSecondary);
|
|
|
|
RETRO_END_DECLS
|
|
|
|
#endif
|