File: settings-driver.h

package info (click to toggle)
libretro-beetle-vb 0.9.36.1%2Bgit20160623-1
  • links: PTS
  • area: main
  • in suites: buster, stretch
  • size: 1,092 kB
  • ctags: 3,155
  • sloc: cpp: 10,233; ansic: 4,577; pascal: 530; makefile: 264; sh: 1
file content (17 lines) | stat: -rw-r--r-- 390 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#ifndef _MDFN_SETTINGS_DRIVER_H
#define _MDFN_SETTINGS_DRIVER_H

#include <map>

#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 value);

bool MDFNI_DumpSettingsDef(const char *path);


#endif