summaryrefslogtreecommitdiffstats
path: root/src/common/profile.h
diff options
context:
space:
mode:
authorPiotr Dziwinski <piotrdz@gmail.com>2012-06-10 15:28:12 +0200
committerPiotr Dziwinski <piotrdz@gmail.com>2012-06-10 15:28:12 +0200
commit697fbdabf10d956e0f13bfbc9414d3db40f0c535 (patch)
treeab80ba3119d07b11da5478009b905edb702c103f /src/common/profile.h
parent680af178196217bdd255d2bc851f240983144ac1 (diff)
downloadcolobot-697fbdabf10d956e0f13bfbc9414d3db40f0c535.tar.gz
colobot-697fbdabf10d956e0f13bfbc9414d3db40f0c535.tar.bz2
colobot-697fbdabf10d956e0f13bfbc9414d3db40f0c535.zip
BOOL -> bool; additional fixes in constructors/destructors
Diffstat (limited to 'src/common/profile.h')
-rw-r--r--src/common/profile.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/common/profile.h b/src/common/profile.h
index aaf25a7..3a2d870 100644
--- a/src/common/profile.h
+++ b/src/common/profile.h
@@ -23,12 +23,12 @@
#define D3D_OVERLOADS
-extern BOOL InitCurrentDirectory();
-extern BOOL SetProfileString(char* section, char* key, char* string);
-extern BOOL GetProfileString(char* section, char* key, char* buffer, int max);
-extern BOOL SetProfileInt(char* section, char* key, int value);
-extern BOOL GetProfileInt(char* section, char* key, int &value);
-extern BOOL SetProfileFloat(char* section, char* key, float value);
-extern BOOL GetProfileFloat(char* section, char* key, float &value);
+extern bool InitCurrentDirectory();
+extern bool SetProfileString(char* section, char* key, char* string);
+extern bool GetProfileString(char* section, char* key, char* buffer, int max);
+extern bool SetProfileInt(char* section, char* key, int value);
+extern bool GetProfileInt(char* section, char* key, int &value);
+extern bool SetProfileFloat(char* section, char* key, float value);
+extern bool GetProfileFloat(char* section, char* key, float &value);