17 lines
447 B
C
17 lines
447 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
|