From b4eb9bf251b76df40626c030cb0373bba8952641 Mon Sep 17 00:00:00 2001 From: Juan Lang Date: Thu, 18 Oct 2007 11:09:22 -0700 Subject: [PATCH] crypt32: Add I_CertUpdateStore stub. --- dlls/crypt32/crypt32.spec | 1 + dlls/crypt32/main.c | 10 ++++++++++ 2 files changed, 11 insertions(+) diff --git a/dlls/crypt32/crypt32.spec b/dlls/crypt32/crypt32.spec index 854272186cd..874d26d7c13 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 12f28856f84..fa8b7826c1c 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