mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-07 11:14:58 -06:00
Initialer Commit
This commit is contained in:
23
CPP/7zip/IPassword.h
Normal file
23
CPP/7zip/IPassword.h
Normal file
@@ -0,0 +1,23 @@
|
||||
// IPassword.h
|
||||
|
||||
#ifndef __IPASSWORD_H
|
||||
#define __IPASSWORD_H
|
||||
|
||||
#include "../Common/MyTypes.h"
|
||||
#include "../Common/MyUnknown.h"
|
||||
|
||||
#include "IDecl.h"
|
||||
|
||||
#define PASSWORD_INTERFACE(i, x) DECL_INTERFACE(i, 5, x)
|
||||
|
||||
PASSWORD_INTERFACE(ICryptoGetTextPassword, 0x10)
|
||||
{
|
||||
STDMETHOD(CryptoGetTextPassword)(BSTR *password) PURE;
|
||||
};
|
||||
|
||||
PASSWORD_INTERFACE(ICryptoGetTextPassword2, 0x11)
|
||||
{
|
||||
STDMETHOD(CryptoGetTextPassword2)(Int32 *passwordIsDefined, BSTR *password) PURE;
|
||||
};
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user