aboutsummaryrefslogtreecommitdiffstats
path: root/Alc/alconfig.h
diff options
context:
space:
mode:
Diffstat (limited to 'Alc/alconfig.h')
-rw-r--r--Alc/alconfig.h12
1 files changed, 1 insertions, 11 deletions
diff --git a/Alc/alconfig.h b/Alc/alconfig.h
index 0e9bcec3..290172a8 100644
--- a/Alc/alconfig.h
+++ b/Alc/alconfig.h
@@ -1,14 +1,8 @@
#ifndef ALCONFIG_H
#define ALCONFIG_H
-#ifdef __cplusplus
-#define NOEXCEPT noexcept
-extern "C" {
-#else
-#define NOEXCEPT
-#endif
-void ReadALConfig(void) NOEXCEPT;
+void ReadALConfig();
int ConfigValueExists(const char *devName, const char *blockName, const char *keyName);
const char *GetConfigValue(const char *devName, const char *blockName, const char *keyName, const char *def);
@@ -20,8 +14,4 @@ int ConfigValueUInt(const char *devName, const char *blockName, const char *keyN
int ConfigValueFloat(const char *devName, const char *blockName, const char *keyName, float *ret);
int ConfigValueBool(const char *devName, const char *blockName, const char *keyName, int *ret);
-#ifdef __cplusplus
-} // extern "C"
-#endif
-
#endif /* ALCONFIG_H */