mirror of
https://github.com/libretro/beetle-psx-libretro.git
synced 2024-11-27 02:40:31 +00:00
17 lines
431 B
C++
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
|