beetle-psx-libretro/mednafen/settings-driver.h
2012-06-03 17:48:14 +02:00

17 lines
431 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>
const std::multimap <uint32, MDFNCS> *MDFNI_GetSettings(void);
#endif