Commit be163bf7 authored by Andreas Mohr's avatar Andreas Mohr Committed by Alexandre Julliard

Added CertOpenStore stub.

parent 64e047fe
......@@ -57,7 +57,7 @@
@ stub CertNameToStrA
@ stub CertNameToStrW
@ stub CertOIDToAlgId
@ stub CertOpenStore
@ stdcall CertOpenStore(long long long long long) CertOpenStore
@ stub CertOpenSystemStoreA
@ stub CertOpenSystemStoreW
@ stub CertRDNValueToStrA
......
......@@ -50,6 +50,16 @@ BOOL WINAPI I_CryptFreeLruCache(DWORD x)
return FALSE;
}
/*
* (0x1001350, %eax, 0, 0, 9);
*
*/
BOOL WINAPI CertOpenStore(LPSTR dw1, DWORD dw2, DWORD dw3, DWORD dw4, DWORD dw5)
{
FIXME("(%s, %ld, %ld, %ld, %ld), stub.\n", debugstr_a(dw1), dw2, dw3, dw4, dw5);
return TRUE;
}
BOOL WINAPI CryptSIPRemoveProvider(GUID *pgProv)
{
FIXME("stub!\n");
......
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