Commit e2020e1b authored by Mike McCormack's avatar Mike McCormack Committed by Alexandre Julliard

crypt32: Add stub implementations of some crypto functions used by IE6 install.

parent 3f0a473f
...@@ -175,10 +175,10 @@ ...@@ -175,10 +175,10 @@
@ stdcall I_CryptFreeTls(long long) @ stdcall I_CryptFreeTls(long long)
@ stub I_CryptGetDefaultCryptProv @ stub I_CryptGetDefaultCryptProv
@ stub I_CryptGetDefaultCryptProvForEncrypt @ stub I_CryptGetDefaultCryptProvForEncrypt
@ stub I_CryptGetOssGlobal @ stdcall I_CryptGetOssGlobal(long)
@ stdcall I_CryptGetTls(long) @ stdcall I_CryptGetTls(long)
@ stub I_CryptInsertLruEntry @ stub I_CryptInsertLruEntry
@ stub I_CryptInstallOssGlobal @ stdcall I_CryptInstallOssGlobal(long long long)
@ stub I_CryptReleaseLruEntry @ stub I_CryptReleaseLruEntry
@ stdcall I_CryptSetTls(long ptr) @ stdcall I_CryptSetTls(long ptr)
@ stub I_CryptUninstallOssGlobal @ stub I_CryptUninstallOssGlobal
......
...@@ -352,3 +352,15 @@ BOOL WINAPI I_CryptFreeTls(DWORD dwTlsIndex, DWORD unknown) ...@@ -352,3 +352,15 @@ BOOL WINAPI I_CryptFreeTls(DWORD dwTlsIndex, DWORD unknown)
TRACE("(%ld, %ld)\n", dwTlsIndex, unknown); TRACE("(%ld, %ld)\n", dwTlsIndex, unknown);
return TlsFree(dwTlsIndex); 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;
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment