From 8cea7b64c497d78f5306bfa89cbc865a2df344c2 Mon Sep 17 00:00:00 2001 From: Robert Shearman Date: Fri, 2 Jan 2004 03:56:43 +0000 Subject: [PATCH] Added stub for CertFreeCertificateContext. --- dlls/crypt32/crypt32.spec | 2 +- dlls/crypt32/main.c | 6 ++++++ 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/dlls/crypt32/crypt32.spec b/dlls/crypt32/crypt32.spec index 98aa8e4c435..edae755d434 100644 --- a/dlls/crypt32/crypt32.spec +++ b/dlls/crypt32/crypt32.spec @@ -42,7 +42,7 @@ @ stub CertFreeCTLContext @ stub CertFreeCertificateChain @ stub CertFreeCertificateChainEngine -@ stub CertFreeCertificateContext +@ stdcall CertFreeCertificateContext(ptr) @ stub CertGetCRLContextProperty @ stub CertGetCRLFromStore @ stub CertGetCTLContextProperty diff --git a/dlls/crypt32/main.c b/dlls/crypt32/main.c index 19bd29668a5..0488ba19c98 100644 --- a/dlls/crypt32/main.c +++ b/dlls/crypt32/main.c @@ -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; +} -- 2.11.4.GIT