mirror of
https://github.com/libretro/beetle-psx-libretro.git
synced 2024-11-30 04:10:43 +00:00
15 lines
375 B
C
15 lines
375 B
C
#ifndef _MDFN_SETTINGS_DRIVER_H
|
|
#define _MDFN_SETTINGS_DRIVER_H
|
|
|
|
#include <boolean.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_t value);
|
|
|
|
bool MDFNI_DumpSettingsDef(const char *path);
|
|
|
|
#endif
|