aboutsummaryrefslogtreecommitdiffstats
path: root/Alc/alconfig.h
diff options
context:
space:
mode:
Diffstat (limited to 'Alc/alconfig.h')
-rw-r--r--Alc/alconfig.h20
1 files changed, 0 insertions, 20 deletions
diff --git a/Alc/alconfig.h b/Alc/alconfig.h
deleted file mode 100644
index ffc7adad..00000000
--- a/Alc/alconfig.h
+++ /dev/null
@@ -1,20 +0,0 @@
-#ifndef ALCONFIG_H
-#define ALCONFIG_H
-
-#include <string>
-
-#include "aloptional.h"
-
-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);
-int GetConfigValueBool(const char *devName, const char *blockName, const char *keyName, int def);
-
-al::optional<std::string> ConfigValueStr(const char *devName, const char *blockName, const char *keyName);
-al::optional<int> ConfigValueInt(const char *devName, const char *blockName, const char *keyName);
-al::optional<unsigned int> ConfigValueUInt(const char *devName, const char *blockName, const char *keyName);
-al::optional<float> ConfigValueFloat(const char *devName, const char *blockName, const char *keyName);
-al::optional<bool> ConfigValueBool(const char *devName, const char *blockName, const char *keyName);
-
-#endif /* ALCONFIG_H */