crypt32: better stub for I_CryptInstallOssGlobal

Louis. Lenders xerox_xerox2000 at yahoo.co.uk
Fri Nov 24 13:32:10 CST 2006


Skipped content of type multipart/alternative-------------- next part --------------
diff --git a/dlls/crypt32/main.c b/dlls/crypt32/main.c
index 0d7ed1e..dd9e1fb 100644
--- a/dlls/crypt32/main.c
+++ b/dlls/crypt32/main.c
@@ -188,10 +188,12 @@ BOOL WINAPI I_CryptReadTrustedPublisherD
     return ret;
 }
 
-BOOL WINAPI I_CryptInstallOssGlobal(DWORD x, DWORD y, DWORD z)
+int WINAPI I_CryptInstallOssGlobal(DWORD x, DWORD y, DWORD z)
 {
-    FIXME("%08x %08x %08x\n", x, y, z);
-    return FALSE;
+    static int ret = 8;
+    ret++;
+    FIXME("%08x %08x %08x, return value %d\n", x, y, z,ret);
+    return ret;
 }
 
 BOOL WINAPI I_CryptInstallAsn1Module(void *x, DWORD y, DWORD z)


More information about the wine-patches mailing list