mirror of
https://github.com/libretro/beetle-pce-fast-libretro.git
synced 2024-11-23 07:50:03 +00:00
15 lines
367 B
C++
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
|