mirror of
https://github.com/libretro/beetle-wswan-libretro.git
synced 2024-11-26 17:50:32 +00:00
23 lines
368 B
C
23 lines
368 B
C
#ifndef MDFN_SETTINGS_H
|
|
#define MDFN_SETTINGS_H
|
|
|
|
#include <stdint.h>
|
|
#include <string.h>
|
|
|
|
#include <boolean.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
uint64_t MDFN_GetSettingUI(const char *name);
|
|
int64_t MDFN_GetSettingI(const char *name);
|
|
bool MDFN_GetSettingB(const char *name);
|
|
const char *MDFN_GetSettingS(const char *name);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|