crypt32: Add stub implementations of some crypto functions used by IE6 install.
This commit is contained in:
parent
3f0a473fb7
commit
e2020e1b7e
|
@ -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
|
||||
|
|
|
@ -352,3 +352,15 @@ BOOL WINAPI I_CryptFreeTls(DWORD dwTlsIndex, DWORD unknown)
|
|||
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;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue