mirror of
https://github.com/libretro/beetle-lynx-libretro.git
synced 2024-11-27 02:12:46 +00:00
35 lines
680 B
C
35 lines
680 B
C
#ifndef _MEDNAFEN_H
|
|
#define _MEDNAFEN_H
|
|
|
|
#include "mednafen-types.h"
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
|
|
#include "git.h"
|
|
|
|
#ifdef _WIN32
|
|
#define strcasecmp _stricmp
|
|
#endif
|
|
|
|
extern MDFNGI *MDFNGameInfo;
|
|
|
|
#include "settings.h"
|
|
|
|
void MDFN_PrintError(const char *format, ...);
|
|
void MDFN_printf(const char *format, ...);
|
|
|
|
void MDFN_DebugPrintReal(const char *file, const int line, const char *format, ...);
|
|
|
|
void MDFN_LoadGameCheats(void *override);
|
|
void MDFN_FlushGameCheats(int nosave);
|
|
|
|
void MDFN_MidSync(EmulateSpecStruct *espec);
|
|
void MDFN_MidLineUpdate(EmulateSpecStruct *espec, int y);
|
|
|
|
#include "mednafen-driver.h"
|
|
|
|
#include "mednafen-memory.h"
|
|
|
|
#endif
|