Added stub for CertFreeCertificateContext.

This commit is contained in:
Robert Shearman 2004-01-02 03:56:43 +00:00 committed by Alexandre Julliard
parent b0d57e7c31
commit 8cea7b64c4
2 changed files with 7 additions and 1 deletions

View file

@ -42,7 +42,7 @@
@ stub CertFreeCTLContext
@ stub CertFreeCertificateChain
@ stub CertFreeCertificateChainEngine
@ stub CertFreeCertificateContext
@ stdcall CertFreeCertificateContext(ptr)
@ stub CertGetCRLContextProperty
@ stub CertGetCRLFromStore
@ stub CertGetCTLContextProperty

View file

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