crypt32: Add CryptMsgControl stub.

This commit is contained in:
Juan Lang 2007-07-30 12:07:19 -07:00 committed by Alexandre Julliard
parent 7e10d48c60
commit 04ef3c05f1
3 changed files with 10 additions and 2 deletions

View File

@ -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)

View File

@ -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;
}

View File

@ -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,