crypt32: Add stub for CryptMsgSignCTL.
This commit is contained in:
parent
30de92df3a
commit
1efe0bc39b
@ -153,7 +153,7 @@
|
|||||||
@ stdcall CryptMsgGetParam(ptr long long ptr ptr)
|
@ stdcall CryptMsgGetParam(ptr long long ptr ptr)
|
||||||
@ stdcall CryptMsgOpenToDecode(long long long long ptr ptr)
|
@ stdcall CryptMsgOpenToDecode(long long long long ptr ptr)
|
||||||
@ stdcall CryptMsgOpenToEncode(long long long ptr str ptr)
|
@ stdcall CryptMsgOpenToEncode(long long long ptr str ptr)
|
||||||
@ stub CryptMsgSignCTL
|
@ stdcall CryptMsgSignCTL(long ptr long ptr long ptr ptr)
|
||||||
@ stdcall CryptMsgUpdate(ptr ptr long long)
|
@ stdcall CryptMsgUpdate(ptr ptr long long)
|
||||||
@ stub CryptMsgVerifyCountersignatureEncoded
|
@ stub CryptMsgVerifyCountersignatureEncoded
|
||||||
@ stdcall CryptMsgVerifyCountersignatureEncodedEx(ptr long ptr long ptr long long ptr long ptr)
|
@ stdcall CryptMsgVerifyCountersignatureEncodedEx(ptr long ptr long ptr long long ptr long ptr)
|
||||||
|
@ -2905,3 +2905,12 @@ BOOL WINAPI CryptMsgEncodeAndSignCTL(DWORD dwMsgEncodingType,
|
|||||||
pSignInfo, dwFlags, pbEncoded, pcbEncoded);
|
pSignInfo, dwFlags, pbEncoded, pcbEncoded);
|
||||||
return FALSE;
|
return FALSE;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
BOOL WINAPI CryptMsgSignCTL(DWORD dwMsgEncodingType, BYTE *pbCtlContent,
|
||||||
|
DWORD cbCtlContent, PCMSG_SIGNED_ENCODE_INFO pSignInfo, DWORD dwFlags,
|
||||||
|
BYTE *pbEncoded, DWORD *pcbEncoded)
|
||||||
|
{
|
||||||
|
FIXME("(%08x, %p, %d, %p, %08x, %p, %p): stub\n", dwMsgEncodingType,
|
||||||
|
pbCtlContent, cbCtlContent, pSignInfo, dwFlags, pbEncoded, pcbEncoded);
|
||||||
|
return FALSE;
|
||||||
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user