Juan Lang : crypt32: Add I_CertUpdateStore stub.

Alexandre Julliard julliard at winehq.org
Fri Oct 19 08:35:45 CDT 2007


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

Author: Juan Lang <juan.lang at gmail.com>
Date:   Thu Oct 18 11:09:22 2007 -0700

crypt32: Add I_CertUpdateStore stub.

---

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

diff --git a/dlls/crypt32/crypt32.spec b/dlls/crypt32/crypt32.spec
index 8542721..874d26d 100644
--- a/dlls/crypt32/crypt32.spec
+++ b/dlls/crypt32/crypt32.spec
@@ -190,6 +190,7 @@
 @ stdcall CryptVerifyMessageSignature(ptr long ptr long ptr ptr ptr)
 @ stub CryptVerifyMessageSignatureWithKey
 @ stub CryptVerifySignatureU
+@ stdcall I_CertUpdateStore(ptr ptr long long)
 @ stdcall I_CryptAllocTls()
 @ stdcall I_CryptCreateLruCache(ptr ptr)
 @ stdcall I_CryptCreateLruEntry(ptr long long)
diff --git a/dlls/crypt32/main.c b/dlls/crypt32/main.c
index 12f2885..fa8b782 100644
--- a/dlls/crypt32/main.c
+++ b/dlls/crypt32/main.c
@@ -60,6 +60,16 @@ HCRYPTPROV CRYPT_GetDefaultProvider(void)
     return hDefProv;
 }
 
+/* Appears to be called to update the contents of store1 with those in store2.
+ * The second two parameters are unknown.
+ */
+BOOL WINAPI I_CertUpdateStore(HCERTSTORE store1, HCERTSTORE store2, DWORD unk0,
+ DWORD unk1)
+{
+    FIXME("(%p, %p, %08x, %08x)\n", store1, store2, unk0, unk1);
+    return FALSE;
+}
+
 typedef void * HLRUCACHE;
 
 /* this function is called by Internet Explorer when it is about to verify a




More information about the wine-cvs mailing list