Added stub for CertFreeCertificateContext.
This commit is contained in:
parent
b0d57e7c31
commit
8cea7b64c4
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue