~ubuntu-branches/ubuntu/precise/p7zip/precise-updates

« back to all changes in this revision

Viewing changes to CPP/7zip/UI/Console/OpenCallbackConsole.h

  • Committer: Bazaar Package Importer
  • Author(s): Mohammed Adnène Trojette
  • Date: 2009-02-14 20:12:27 UTC
  • mfrom: (1.1.11 upstream) (2.1.3 sid)
  • Revision ID: james.westby@ubuntu.com-20090214201227-go63qxm9ozfdma60
Tags: 4.65~dfsg.1-1
* New upstream release.
* Remove wx2.8 Build-Depends added by mistakes (7zG is not yet
  intended to be built).
* Use dh_clean without -k.

Show diffs side-by-side

added added

removed removed

Lines of Context:
9
9
class COpenCallbackConsole: public IOpenCallbackUI
10
10
{
11
11
public:
12
 
  HRESULT CheckBreak();
13
 
  HRESULT SetTotal(const UInt64 *files, const UInt64 *bytes);
14
 
  HRESULT SetCompleted(const UInt64 *files, const UInt64 *bytes);
15
 
  HRESULT CryptoGetTextPassword(BSTR *password);
16
 
  HRESULT GetPasswordIfAny(UString &password);
17
 
  bool WasPasswordAsked();
18
 
  void ClearPasswordWasAskedFlag();
 
12
  INTERFACE_IOpenCallbackUI(;)
19
13
  
20
14
  CStdOutStream *OutStream;
 
15
 
 
16
  #ifndef _NO_CRYPTO
21
17
  bool PasswordIsDefined;
 
18
  bool PasswordWasAsked;
22
19
  UString Password;
23
 
  bool PasswordWasAsked;
24
20
  COpenCallbackConsole(): PasswordIsDefined(false), PasswordWasAsked(false) {}
 
21
  #endif
25
22
};
26
23
 
27
24
#endif