crypt32: Add stub for CryptMsgEncodeAndSignCTL.
This commit is contained in:
parent
76925b06c2
commit
30de92df3a
|
@ -148,7 +148,7 @@
|
|||
@ stub CryptMsgCountersign
|
||||
@ stub CryptMsgCountersignEncoded
|
||||
@ stdcall CryptMsgDuplicate(ptr)
|
||||
@ stub CryptMsgEncodeAndSignCTL
|
||||
@ stdcall CryptMsgEncodeAndSignCTL(long ptr ptr long ptr ptr)
|
||||
@ stdcall CryptMsgGetAndVerifySigner(ptr long ptr long ptr ptr)
|
||||
@ stdcall CryptMsgGetParam(ptr long long ptr ptr)
|
||||
@ stdcall CryptMsgOpenToDecode(long long long long ptr ptr)
|
||||
|
|
|
@ -2896,3 +2896,12 @@ BOOL WINAPI CryptMsgVerifyCountersignatureEncodedEx(HCRYPTPROV_LEGACY hCryptProv
|
|||
cbSignerInfoCountersignature, dwSignerType, pvSigner, dwFlags, pvReserved);
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
BOOL WINAPI CryptMsgEncodeAndSignCTL(DWORD dwMsgEncodingType,
|
||||
PCTL_INFO pCtlInfo, PCMSG_SIGNED_ENCODE_INFO pSignInfo, DWORD dwFlags,
|
||||
BYTE *pbEncoded, DWORD *pcbEncoded)
|
||||
{
|
||||
FIXME("(%08x, %p, %p, %08x, %p, %p): stub\n", dwMsgEncodingType, pCtlInfo,
|
||||
pSignInfo, dwFlags, pbEncoded, pcbEncoded);
|
||||
return FALSE;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue