mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-05 18:01:34 +00:00
crypt32: Add stub for CertFreeCertificateChain.
This commit is contained in:
parent
1547f39800
commit
466d8a01a5
2 changed files with 6 additions and 1 deletions
|
@ -183,3 +183,8 @@ BOOL WINAPI CertGetCertificateChain(HCERTCHAINENGINE hChainEngine,
|
|||
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
void WINAPI CertFreeCertificateChain(PCCERT_CHAIN_CONTEXT pChainContext)
|
||||
{
|
||||
FIXME("(%p): stub\n", pChainContext);
|
||||
}
|
||||
|
|
|
@ -45,7 +45,7 @@
|
|||
@ stub CertFindSubjectInCTL
|
||||
@ stdcall CertFreeCRLContext(ptr)
|
||||
@ stdcall CertFreeCTLContext(ptr)
|
||||
@ stub CertFreeCertificateChain
|
||||
@ stdcall CertFreeCertificateChain(ptr)
|
||||
@ stdcall CertFreeCertificateChainEngine(ptr)
|
||||
@ stdcall CertFreeCertificateContext(ptr)
|
||||
@ stdcall CertGetCRLContextProperty(ptr long ptr ptr)
|
||||
|
|
Loading…
Reference in a new issue