This commit is contained in:
Igor Pavlov
2005-05-30 00:00:00 +00:00
committed by Kornel Lesiński
parent 8c1b5c7b7e
commit 3c510ba80b
926 changed files with 40559 additions and 23519 deletions

View File

@@ -1,11 +1,10 @@
// IPassword.h
// #pragma once
#ifndef __IPASSWORD_H
#define __IPASSWORD_H
// #include "Common/Types.h"
#include "../Common/MyUnknown.h"
#include "../Common/Types.h"
// {23170F69-40C1-278A-0000-000200250000}
DEFINE_GUID(IID_ICryptoSetPassword,
@@ -13,7 +12,7 @@ DEFINE_GUID(IID_ICryptoSetPassword,
MIDL_INTERFACE("23170F69-40C1-278A-0000-000200250000")
ICryptoSetPassword: public IUnknown
{
STDMETHOD(CryptoSetPassword)(const BYTE *data, UINT32 size) PURE;
STDMETHOD(CryptoSetPassword)(const Byte *data, UInt32 size) PURE;
};
// {23170F69-40C1-278A-0000-000200251000}
@@ -22,7 +21,7 @@ DEFINE_GUID(IID_ICryptoSetCRC,
MIDL_INTERFACE("23170F69-40C1-278A-0000-000200251000")
ICryptoSetCRC: public IUnknown
{
STDMETHOD(CryptoSetCRC)(UINT32 crc) PURE;
STDMETHOD(CryptoSetCRC)(UInt32 crc) PURE;
};
// {23170F69-40C1-278A-0000-000200270000}
@@ -40,7 +39,7 @@ DEFINE_GUID(IID_ICryptoGetTextPassword2,
MIDL_INTERFACE("23170F69-40C1-278A-0000-000200270200")
ICryptoGetTextPassword2: public IUnknown
{
STDMETHOD(CryptoGetTextPassword2)(INT32 *passwordIsDefined, BSTR *password) PURE;
STDMETHOD(CryptoGetTextPassword2)(Int32 *passwordIsDefined, BSTR *password) PURE;
};
#endif