beetle-pce-fast-libretro/mednafen/settings-driver.h
2012-11-20 17:08:02 +01:00

15 lines
367 B
C++

#ifndef _MDFN_SETTINGS_DRIVER_H
#define _MDFN_SETTINGS_DRIVER_H
#include "settings-common.h"
bool MDFNI_SetSetting(const char *name, const char *value, bool NetplayOverride = FALSE);
bool MDFNI_SetSettingB(const char *name, bool value);
bool MDFNI_SetSettingUI(const char *name, uint64 value);
bool MDFNI_DumpSettingsDef(const char *path);
#include <map>
#endif