crypt32: Add stub for CryptMsgGetAndVerifySigner.
This commit is contained in:
parent
3bf289aecc
commit
35b126a033
|
@ -148,7 +148,7 @@
|
|||
@ stub CryptMsgCountersignEncoded
|
||||
@ stdcall CryptMsgDuplicate(ptr)
|
||||
@ stub CryptMsgEncodeAndSignCTL
|
||||
@ stub CryptMsgGetAndVerifySigner
|
||||
@ stdcall CryptMsgGetAndVerifySigner(ptr long ptr long ptr ptr)
|
||||
@ stdcall CryptMsgGetParam(ptr long long ptr ptr)
|
||||
@ stdcall CryptMsgOpenToDecode(long long long long ptr ptr)
|
||||
@ stdcall CryptMsgOpenToEncode(long long long ptr str ptr)
|
||||
|
|
|
@ -2445,3 +2445,13 @@ BOOL WINAPI CryptMsgControl(HCRYPTMSG hCryptMsg, DWORD dwFlags,
|
|||
pvCtrlPara);
|
||||
return msg->control(hCryptMsg, dwFlags, dwCtrlType, pvCtrlPara);
|
||||
}
|
||||
|
||||
BOOL WINAPI CryptMsgGetAndVerifySigner(HCRYPTMSG hCryptMsg, DWORD cSignerStore,
|
||||
HCERTSTORE *rghSignerStore, DWORD dwFlags, PCCERT_CONTEXT *ppSigner,
|
||||
DWORD *pdwSignerIndex)
|
||||
{
|
||||
FIXME("(%p, %d, %p, %08x, %p, %p): stub\n", hCryptMsg, cSignerStore,
|
||||
rghSignerStore, dwFlags, ppSigner, pdwSignerIndex);
|
||||
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
||||
return FALSE;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue