2012-06-03 15:48:14 +00:00
|
|
|
#ifndef _MEDNAFEN_H
|
2012-10-26 16:00:14 +00:00
|
|
|
#define _MEDNAFEN_H
|
2012-06-03 15:48:14 +00:00
|
|
|
|
|
|
|
#include "mednafen-types.h"
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
#include "git.h"
|
2020-09-18 19:47:07 +00:00
|
|
|
#include "settings.h"
|
|
|
|
|
2013-01-15 12:34:01 +00:00
|
|
|
#ifdef _WIN32
|
|
|
|
#define strcasecmp _stricmp
|
|
|
|
#endif
|
|
|
|
|
2012-12-30 03:04:25 +00:00
|
|
|
void MDFN_LoadGameCheats(void *override);
|
2012-06-03 15:48:14 +00:00
|
|
|
void MDFN_FlushGameCheats(int nosave);
|
|
|
|
|
2014-04-20 21:05:37 +00:00
|
|
|
void MDFN_MidSync(EmulateSpecStruct *espec);
|
|
|
|
void MDFN_MidLineUpdate(EmulateSpecStruct *espec, int y);
|
|
|
|
|
2020-10-04 15:00:42 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
void MDFN_DispMessage(const char *format, ...);
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2012-06-03 15:48:14 +00:00
|
|
|
#endif
|