Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/kornelski/7z.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'CPP/7zip/UI/Console/UpdateCallbackConsole.h')
-rwxr-xr-xCPP/7zip/UI/Console/UpdateCallbackConsole.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/CPP/7zip/UI/Console/UpdateCallbackConsole.h b/CPP/7zip/UI/Console/UpdateCallbackConsole.h
index d04e1ad4..da8d8cc2 100755
--- a/CPP/7zip/UI/Console/UpdateCallbackConsole.h
+++ b/CPP/7zip/UI/Console/UpdateCallbackConsole.h
@@ -21,15 +21,18 @@ public:
bool EnablePercents;
bool StdOutMode;
+ #ifndef _NO_CRYPTO
bool PasswordIsDefined;
UString Password;
bool AskPassword;
+ #endif
-
- CUpdateCallbackConsole():
+ CUpdateCallbackConsole():
m_PercentPrinter(1 << 16),
+ #ifndef _NO_CRYPTO
PasswordIsDefined(false),
AskPassword(false),
+ #endif
StdOutMode(false),
EnablePercents(true),
m_WarningsMode(false)