Commit 8cea7b64 authored by Robert Shearman's avatar Robert Shearman Committed by Alexandre Julliard

Added stub for CertFreeCertificateContext.

parent b0d57e7c
......@@ -42,7 +42,7 @@
@ stub CertFreeCTLContext
@ stub CertFreeCertificateChain
@ stub CertFreeCertificateChainEngine
@ stub CertFreeCertificateContext
@ stdcall CertFreeCertificateContext(ptr)
@ stub CertGetCRLContextProperty
@ stub CertGetCRLFromStore
@ stub CertGetCTLContextProperty
......
......@@ -293,3 +293,9 @@ BOOL WINAPI CertCloseStore( HCERTSTORE hCertStore, DWORD dwFlags )
FIXME("%p %08lx\n", hCertStore, dwFlags );
return TRUE;
}
BOOL WINAPI CertFreeCertificateContext( PCCERT_CONTEXT pCertContext )
{
FIXME("%p stub\n", pCertContext);
return TRUE;
}
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