blob: 76a6ec41cf6994cbdf32b393ca764bf6b03f2c51 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
// OpenCallbackGUI.h
#ifndef __OPEN_CALLBACK_GUI_H
#define __OPEN_CALLBACK_GUI_H
#include "../Common/ArchiveOpenCallback.h"
class COpenCallbackGUI: public IOpenCallbackUI
{
public:
HRESULT CheckBreak();
HRESULT SetTotal(const UInt64 *files, const UInt64 *bytes);
HRESULT SetCompleted(const UInt64 *files, const UInt64 *bytes);
#ifndef _NO_CRYPTO
HRESULT CryptoGetTextPassword(BSTR *password);
HRESULT GetPasswordIfAny(UString &password);
bool PasswordIsDefined;
UString Password;
#endif
HWND ParentWindow;
COpenCallbackGUI():
#ifndef _NO_CRYPTO
PasswordIsDefined(false),
#endif
ParentWindow(0) {}
};
#endif
|