Module: wine Branch: master Commit: 466d8a01a5af51f802ccc6cc5bd1ecfd206a5321 URL: http://source.winehq.org/git/wine.git/?a=commit;h=466d8a01a5af51f802ccc6cc5b...
Author: Juan Lang juan.lang@gmail.com Date: Tue Aug 14 14:34:59 2007 -0700
crypt32: Add stub for CertFreeCertificateChain.
---
dlls/crypt32/chain.c | 5 +++++ dlls/crypt32/crypt32.spec | 2 +- 2 files changed, 6 insertions(+), 1 deletions(-)
diff --git a/dlls/crypt32/chain.c b/dlls/crypt32/chain.c index ff2c0e0..a244715 100644 --- a/dlls/crypt32/chain.c +++ b/dlls/crypt32/chain.c @@ -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); +} diff --git a/dlls/crypt32/crypt32.spec b/dlls/crypt32/crypt32.spec index 8fbaecd..bae473c 100644 --- a/dlls/crypt32/crypt32.spec +++ b/dlls/crypt32/crypt32.spec @@ -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)