Juan Lang : crypt32: Add stub for CertAddCertificateLinkToStore.

Alexandre Julliard julliard at winehq.org
Wed Nov 4 10:26:22 CST 2009


Module: wine
Branch: master
Commit: 9364d7a928bae2e2b2854a1c62383c4cb526792f
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=9364d7a928bae2e2b2854a1c62383c4cb526792f

Author: Juan Lang <juan.lang at gmail.com>
Date:   Mon Nov  2 16:16:46 2009 -0800

crypt32: Add stub for CertAddCertificateLinkToStore.

---

 dlls/crypt32/cert.c       |    9 +++++++++
 dlls/crypt32/crypt32.spec |    1 +
 2 files changed, 10 insertions(+), 0 deletions(-)

diff --git a/dlls/crypt32/cert.c b/dlls/crypt32/cert.c
index c87b07c..208f3fc 100644
--- a/dlls/crypt32/cert.c
+++ b/dlls/crypt32/cert.c
@@ -71,6 +71,15 @@ BOOL WINAPI CertAddEncodedCertificateToStore(HCERTSTORE hCertStore,
     return ret;
 }
 
+BOOL WINAPI CertAddCertificateLinkToStore(HCERTSTORE hCertStore,
+ PCCERT_CONTEXT pCertContext, DWORD dwAddDisposition,
+ PCCERT_CONTEXT *ppCertContext)
+{
+    FIXME("(%p, %p, %08x, %p)\n", hCertStore, pCertContext, dwAddDisposition,
+     ppCertContext);
+    return FALSE;
+}
+
 PCCERT_CONTEXT WINAPI CertCreateCertificateContext(DWORD dwCertEncodingType,
  const BYTE *pbCertEncoded, DWORD cbCertEncoded)
 {
diff --git a/dlls/crypt32/crypt32.spec b/dlls/crypt32/crypt32.spec
index c144ea9..ef5d6e6 100644
--- a/dlls/crypt32/crypt32.spec
+++ b/dlls/crypt32/crypt32.spec
@@ -1,6 +1,7 @@
 @ stdcall CertAddCRLContextToStore(ptr ptr long ptr)
 @ stdcall CertAddCTLContextToStore(ptr ptr long ptr)
 @ stdcall CertAddCertificateContextToStore(ptr ptr long ptr)
+@ stdcall CertAddCertificateLinkToStore(ptr ptr long ptr)
 @ stdcall CertAddEncodedCRLToStore(ptr long ptr long long ptr)
 @ stdcall CertAddEncodedCTLToStore(ptr long ptr long long ptr)
 @ stdcall CertAddEncodedCertificateToStore(ptr long ptr long long ptr)




More information about the wine-cvs mailing list