cryptnet: Add CertDllVerifyRevocation stub.
This commit is contained in:
parent
4009ed30bc
commit
6d431c7337
|
@ -1,5 +1,5 @@
|
|||
@ stub CertDllVerifyCTLUsage
|
||||
@ stub CertDllVerifyRevocation
|
||||
@ stdcall CertDllVerifyRevocation(long long long ptr long ptr ptr)
|
||||
@ stub CryptnetWlxLogoffEvent
|
||||
@ stub LdapProvOpenStore
|
||||
@ stub CryptCancelAsyncRetrieval
|
||||
|
|
|
@ -77,3 +77,15 @@ HRESULT WINAPI DllUnregisterServer(void)
|
|||
CERT_STORE_PROV_LDAP_W);
|
||||
return S_OK;
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
* CertDllVerifyRevocation (CRYPTNET.@)
|
||||
*/
|
||||
BOOL WINAPI CertDllVerifyRevocation(DWORD dwEncodingType, DWORD dwRevType,
|
||||
DWORD cContext, void *rgpvContext[], DWORD dwFlags,
|
||||
PCERT_REVOCATION_PARA pRevPara, PCERT_REVOCATION_STATUS pRevStatus)
|
||||
{
|
||||
FIXME("(%08x, %d, %d, %p, %08x, %p, %p): stub\n", dwEncodingType, dwRevType,
|
||||
cContext, rgpvContext, dwFlags, pRevPara, pRevStatus);
|
||||
return FALSE;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue