summaryrefslogtreecommitdiff
path: root/src/settings_func.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/settings_func.h')
-rw-r--r--src/settings_func.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/settings_func.h b/src/settings_func.h
index c6f0892c7..3b3387b5f 100644
--- a/src/settings_func.h
+++ b/src/settings_func.h
@@ -15,6 +15,8 @@
#include "core/smallvec_type.hpp"
#include "company_type.h"
+struct IniFile;
+
void IConsoleSetSetting(const char *name, const char *value, bool force_newgame = false);
void IConsoleSetSetting(const char *name, int32 value);
void IConsoleGetSetting(const char *name, bool force_newgame = false);
@@ -24,6 +26,9 @@ void LoadFromConfig(bool minimal = false);
void SaveToConfig();
void CheckConfig();
+void IniLoadWindowSettings(IniFile *ini, const char *grpname, void *desc);
+void IniSaveWindowSettings(IniFile *ini, const char *grpname, void *desc);
+
/* Functions to load and save NewGRF settings to a separate
* configuration file, used for presets. */
typedef AutoFreeSmallVector<char *, 4> GRFPresetList;