Hi all, added CertOpenStore stub to crypt32. -- Andreas Mohr Stauferstr. 6, D-71272 Renningen, Germany
Determining best CVS host... Using CVSROOT :pserver:cvs@cvs.winehq.com:/home/wine Index: dlls/crypt32/crypt32.spec =================================================================== RCS file: /home/wine/wine/dlls/crypt32/crypt32.spec,v retrieving revision 1.9 diff -u -r1.9 crypt32.spec --- dlls/crypt32/crypt32.spec 15 Oct 2002 02:14:30 -0000 1.9 +++ dlls/crypt32/crypt32.spec 24 Oct 2002 10:28:27 -0000 @@ -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 Index: dlls/crypt32/main.c =================================================================== RCS file: /home/wine/wine/dlls/crypt32/main.c,v retrieving revision 1.8 diff -u -r1.8 main.c --- dlls/crypt32/main.c 15 Oct 2002 02:14:30 -0000 1.8 +++ dlls/crypt32/main.c 24 Oct 2002 10:28:28 -0000 @@ -50,6 +50,16 @@ 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");