Louis Lenders : crypt32: Better stub for I_CryptInstallOssGlobal.

Alexandre Julliard julliard at wine.codeweavers.com
Mon Nov 27 12:51:04 CST 2006


Module: wine
Branch: master
Commit: 3fa930cb3bf10675b571296c4b45e683b6fae40e
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=3fa930cb3bf10675b571296c4b45e683b6fae40e

Author: Louis Lenders <xerox_xerox2000 at yahoo.co.uk>
Date:   Fri Nov 24 19:32:10 2006 +0000

crypt32: Better stub for I_CryptInstallOssGlobal.

---

 dlls/crypt32/main.c |    8 +++++---
 1 files changed, 5 insertions(+), 3 deletions(-)

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-cvs mailing list