mirror of
https://github.com/reactos/reactos.git
synced 2025-08-03 17:05:44 +00:00
[CRYPT32]
sync crypt32 to wine 1.1.40 svn path=/trunk/; revision=45911
This commit is contained in:
parent
67aebd5a4f
commit
f4c2a120ef
1 changed files with 6 additions and 1 deletions
|
@ -161,8 +161,13 @@ BOOL WINAPI I_CryptSetTls(DWORD dwTlsIndex, LPVOID lpTlsValue)
|
||||||
|
|
||||||
BOOL WINAPI I_CryptFreeTls(DWORD dwTlsIndex, DWORD unknown)
|
BOOL WINAPI I_CryptFreeTls(DWORD dwTlsIndex, DWORD unknown)
|
||||||
{
|
{
|
||||||
|
BOOL ret;
|
||||||
|
|
||||||
TRACE("(%d, %d)\n", dwTlsIndex, unknown);
|
TRACE("(%d, %d)\n", dwTlsIndex, unknown);
|
||||||
return TlsFree(dwTlsIndex);
|
|
||||||
|
ret = TlsFree(dwTlsIndex);
|
||||||
|
if (!ret) SetLastError( E_INVALIDARG );
|
||||||
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
BOOL WINAPI I_CryptGetOssGlobal(DWORD x)
|
BOOL WINAPI I_CryptGetOssGlobal(DWORD x)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue