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>
|
2018-03-29 15:13:33 +02:00
|
|
|
#include <boolean.h>
|
2018-04-08 20:25:43 +02:00
|
|
|
|
2018-03-29 15:13:33 +02:00
|
|
|
#include <retro_common_api.h>
|
2018-03-28 17:14:20 -05:00
|
|
|
|
|
|
|
RETRO_BEGIN_DECLS
|
|
|
|
|
|
|
|
void runahead_destroy(void);
|
2018-03-29 16:18:45 +02:00
|
|
|
|
2018-03-28 17:14:20 -05:00
|
|
|
void run_ahead(int runAheadCount, bool useSecondary);
|
|
|
|
|
2018-03-30 20:22:35 -05:00
|
|
|
bool want_fast_savestate(void);
|
|
|
|
bool get_hard_disable_audio(void);
|
|
|
|
|
2018-03-28 17:14:20 -05:00
|
|
|
RETRO_END_DECLS
|
|
|
|
|
|
|
|
#endif
|