crypt32: Add CryptMsgControl stub.
This commit is contained in:
parent
7e10d48c60
commit
04ef3c05f1
|
@ -141,7 +141,7 @@
|
||||||
@ stdcall CryptMemRealloc(ptr long)
|
@ stdcall CryptMemRealloc(ptr long)
|
||||||
@ stub CryptMsgCalculateEncodedLength
|
@ stub CryptMsgCalculateEncodedLength
|
||||||
@ stdcall CryptMsgClose(ptr)
|
@ stdcall CryptMsgClose(ptr)
|
||||||
@ stub CryptMsgControl
|
@ stdcall CryptMsgControl(ptr long long ptr)
|
||||||
@ stub CryptMsgCountersign
|
@ stub CryptMsgCountersign
|
||||||
@ stub CryptMsgCountersignEncoded
|
@ stub CryptMsgCountersignEncoded
|
||||||
@ stdcall CryptMsgDuplicate(ptr)
|
@ stdcall CryptMsgDuplicate(ptr)
|
||||||
|
|
|
@ -1994,3 +1994,11 @@ BOOL WINAPI CryptMsgGetParam(HCRYPTMSG hCryptMsg, DWORD dwParamType,
|
||||||
pvData, pcbData);
|
pvData, pcbData);
|
||||||
return msg->get_param(hCryptMsg, dwParamType, dwIndex, pvData, pcbData);
|
return msg->get_param(hCryptMsg, dwParamType, dwIndex, pvData, pcbData);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
BOOL WINAPI CryptMsgControl(HCRYPTMSG hCryptMsg, DWORD dwFlags,
|
||||||
|
DWORD dwCtrlType, const void *pvCtrlPara)
|
||||||
|
{
|
||||||
|
FIXME("(%p, %08x, %d, %p): stub\n", hCryptMsg, dwFlags, dwCtrlType,
|
||||||
|
pvCtrlPara);
|
||||||
|
return TRUE;
|
||||||
|
}
|
||||||
|
|
|
@ -3822,7 +3822,7 @@ DWORD WINAPI CryptMsgCalculateEncodedLength(DWORD dwMsgEncodingType,
|
||||||
|
|
||||||
BOOL WINAPI CryptMsgClose(HCRYPTMSG hCryptMsg);
|
BOOL WINAPI CryptMsgClose(HCRYPTMSG hCryptMsg);
|
||||||
|
|
||||||
DWORD WINAPI CryptMsgControl(HCRYPTMSG hCryptMsg, DWORD dwFlags,
|
BOOL WINAPI CryptMsgControl(HCRYPTMSG hCryptMsg, DWORD dwFlags,
|
||||||
DWORD dwCtrlType, const void *pvCtrlPara);
|
DWORD dwCtrlType, const void *pvCtrlPara);
|
||||||
|
|
||||||
BOOL WINAPI CryptMsgCountersign(HCRYPTMSG hCryptMsg, DWORD dwIndex,
|
BOOL WINAPI CryptMsgCountersign(HCRYPTMSG hCryptMsg, DWORD dwIndex,
|
||||||
|
|
Loading…
Reference in New Issue