RetroArch/runahead/run_ahead.h

21 lines
318 B
C
Raw Normal View History

2018-03-28 17:14:20 -05:00
#ifndef __RUN_AHEAD_H__
#define __RUN_AHEAD_H__
2018-04-08 20:25:43 +02:00
#include <stddef.h>
#include <boolean.h>
2018-04-08 20:25:43 +02:00
#include <retro_common_api.h>
2018-03-28 17:14:20 -05:00
RETRO_BEGIN_DECLS
void runahead_destroy(void);
2018-03-28 17:14:20 -05:00
void run_ahead(int runAheadCount, bool useSecondary);
bool want_fast_savestate(void);
bool get_hard_disable_audio(void);
2018-03-28 17:14:20 -05:00
RETRO_END_DECLS
#endif