Commit b4eb9bf2 authored by Juan Lang's avatar Juan Lang Committed by Alexandre Julliard

crypt32: Add I_CertUpdateStore stub.

parent 7b8cb034
......@@ -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)
......
......@@ -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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment