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/GUI/UpdateCallbackGUI.h')
-rwxr-xr-xCPP/7zip/UI/GUI/UpdateCallbackGUI.h10
1 files changed, 8 insertions, 2 deletions
diff --git a/CPP/7zip/UI/GUI/UpdateCallbackGUI.h b/CPP/7zip/UI/GUI/UpdateCallbackGUI.h
index dc370638..1f8b70e0 100755
--- a/CPP/7zip/UI/GUI/UpdateCallbackGUI.h
+++ b/CPP/7zip/UI/GUI/UpdateCallbackGUI.h
@@ -4,19 +4,24 @@
#define __UPDATE_CALLBACK_GUI_H
#include "../Common/Update.h"
+#include "../Common/ArchiveOpenCallback.h"
#include "../FileManager/ProgressDialog2.h"
-class CUpdateCallbackGUI: public IUpdateCallbackUI2
+class CUpdateCallbackGUI:
+ public IOpenCallbackUI,
+ public IUpdateCallbackUI2
{
public:
// bool StdOutMode;
bool PasswordIsDefined;
UString Password;
bool AskPassword;
+ bool PasswordWasAsked;
UInt64 NumFiles;
- CUpdateCallbackGUI():
+ CUpdateCallbackGUI():
PasswordIsDefined(false),
+ PasswordWasAsked(false),
AskPassword(false),
// StdOutMode(false)
ParentWindow(0)
@@ -26,6 +31,7 @@ public:
void Init();
INTERFACE_IUpdateCallbackUI2(;)
+ INTERFACE_IOpenCallbackUI(;)
// HRESULT CloseProgress();