Added CertOpenStore stub.

This commit is contained in:
Andreas Mohr 2002-10-25 03:48:49 +00:00 committed by Alexandre Julliard
parent 64e047fed3
commit be163bf73b
2 changed files with 11 additions and 1 deletions

View File

@ -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

View File

@ -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");