diff options
Diffstat (limited to 'core.h')
-rw-r--r-- | core.h | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -1,6 +1,7 @@ #ifndef _CORE_H__ #define _CORE_H__ +#include "cheat.h" #include "libretro.h" #include "main.h" @@ -32,6 +33,7 @@ struct core_cbs { extern struct core_cbs current_core; extern char core_path[MAX_PATH]; extern char content_path[MAX_PATH]; +extern struct cheats *cheats; extern double sample_rate; extern double frame_rate; @@ -60,6 +62,7 @@ bool disc_replace_index(unsigned index, const char *content_path); void core_extract_name(const char* core_file, char *buf, size_t len); int core_load(const char *corefile); int core_load_content(const char *path); +void core_apply_cheats(struct cheats *cheats); void core_unload_content(void); const char **core_extensions(void); void core_unload(void); |