Module: wine Branch: refs/heads/master Commit: e2020e1b7e06ba1e386ff4bc419419d648dce95c URL: http://source.winehq.org/git/?p=wine.git;a=commit;h=e2020e1b7e06ba1e386ff4bc...
Author: Mike McCormack mike@codeweavers.com Date: Mon Jan 23 11:54:58 2006 +0100
crypt32: Add stub implementations of some crypto functions used by IE6 install.
---
dlls/crypt32/crypt32.spec | 4 ++-- dlls/crypt32/main.c | 12 ++++++++++++ 2 files changed, 14 insertions(+), 2 deletions(-)
diff --git a/dlls/crypt32/crypt32.spec b/dlls/crypt32/crypt32.spec index 0bf70de..52395d2 100644 --- a/dlls/crypt32/crypt32.spec +++ b/dlls/crypt32/crypt32.spec @@ -175,10 +175,10 @@ @ stdcall I_CryptFreeTls(long long) @ stub I_CryptGetDefaultCryptProv @ stub I_CryptGetDefaultCryptProvForEncrypt -@ stub I_CryptGetOssGlobal +@ stdcall I_CryptGetOssGlobal(long) @ stdcall I_CryptGetTls(long) @ stub I_CryptInsertLruEntry -@ stub I_CryptInstallOssGlobal +@ stdcall I_CryptInstallOssGlobal(long long long) @ stub I_CryptReleaseLruEntry @ stdcall I_CryptSetTls(long ptr) @ stub I_CryptUninstallOssGlobal diff --git a/dlls/crypt32/main.c b/dlls/crypt32/main.c index 53c6000..7a9c6f1 100644 --- a/dlls/crypt32/main.c +++ b/dlls/crypt32/main.c @@ -352,3 +352,15 @@ BOOL WINAPI I_CryptFreeTls(DWORD dwTlsIn TRACE("(%ld, %ld)\n", dwTlsIndex, unknown); return TlsFree(dwTlsIndex); } + +BOOL WINAPI I_CryptGetOssGlobal(DWORD x) +{ + FIXME("%08lx\n", x); + return FALSE; +} + +BOOL WINAPI I_CryptInstallOssGlobal(DWORD x, DWORD y, DWORD z) +{ + FIXME("%08lx %08lx %08lx\n", x, y, z); + return FALSE; +}