mirror of
https://github.com/libretro/RetroArch
synced 2025-01-31 06:32:48 +00:00
6bc1802914
should now be self-contained in one file. Allows us to turn more functions static, remove more extraneous functions that just consisted of a single line (mostly getters/setters), etc.
17 lines
233 B
C
17 lines
233 B
C
#ifndef __RUN_AHEAD_H__
|
|
#define __RUN_AHEAD_H__
|
|
|
|
#include <stddef.h>
|
|
#include <boolean.h>
|
|
|
|
#include <retro_common_api.h>
|
|
|
|
RETRO_BEGIN_DECLS
|
|
|
|
bool want_fast_savestate(void);
|
|
bool get_hard_disable_audio(void);
|
|
|
|
RETRO_END_DECLS
|
|
|
|
#endif
|