Commit 6d431c73 authored by Juan Lang's avatar Juan Lang Committed by Alexandre Julliard

cryptnet: Add CertDllVerifyRevocation stub.

parent 4009ed30
@ 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;
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment