diff options
author | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2015-08-16 17:36:36 +0200 |
---|---|---|
committer | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2015-08-16 17:58:06 +0200 |
commit | 55a267a171bac0b1fa415c38b6e5ecec2e2eb004 (patch) | |
tree | 21de1b2d465fcc5a5bb08ae69f827b8ffef063a7 /src/Common/Dlgcode.h | |
parent | ba9af466624706ada9bff2d74a257c7fbedba5cc (diff) | |
download | VeraCrypt-55a267a171bac0b1fa415c38b6e5ecec2e2eb004.tar.gz VeraCrypt-55a267a171bac0b1fa415c38b6e5ecec2e2eb004.zip |
Windows: Solve UI language change not taken into account for new install unless a preference is changed. Code refactoring.
Diffstat (limited to 'src/Common/Dlgcode.h')
-rw-r--r-- | src/Common/Dlgcode.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/Common/Dlgcode.h b/src/Common/Dlgcode.h index 752b0cb1..e3f73e07 100644 --- a/src/Common/Dlgcode.h +++ b/src/Common/Dlgcode.h @@ -425,6 +425,8 @@ BOOL ConfigWriteString (char *configKey, char *configValue); BOOL ConfigWriteInt (char *configKey, int configValue);
int ConfigReadInt (char *configKey, int defaultValue);
char *ConfigReadString (char *configKey, char *defaultValue, char *str, int maxLen);
+void ConfigReadCompareInt(char *configKey, int defaultValue, int* pOutputValue, BOOL bOnlyCheckModified, BOOL* pbModified);
+void ConfigReadCompareString (char *configKey, char *defaultValue, char *str, int maxLen, BOOL bOnlyCheckModified, BOOL *pbModified);
void RestoreDefaultKeyFilesParam (void);
BOOL LoadDefaultKeyFilesParam (void);
void Debug (char *format, ...);
|