(svn r11771) -Codechange: split settings.h into better separated headers.

This commit is contained in:
rubidium
2008-01-07 00:19:09 +00:00
parent 7be2160cfb
commit acc7c9eb01
15 changed files with 241 additions and 230 deletions

17
src/settings_func.h Normal file
View File

@@ -0,0 +1,17 @@
/* $Id$ */
/** @file settings_func.h Functions related to setting/changing the settings. */
#ifndef SETTINGS_FUNC_H
#define SETTINGS_FUNC_H
bool IConsoleSetPatchSetting(const char *name, int32 value);
void IConsoleGetPatchSetting(const char *name);
void IConsoleListPatches();
void LoadFromConfig();
void SaveToConfig();
void CheckConfig();
void UpdatePatches();
#endif /* SETTINGS_FUNC_H */