kernel32: Change SetHandleCount to match behaviour on versions >WINNT.
This commit is contained in:
parent
a161d59504
commit
e793f9b072
|
@ -1192,7 +1192,7 @@ BOOL WINAPI UnlockFileEx( HANDLE hFile, DWORD reserved, DWORD count_low, DWORD c
|
|||
*/
|
||||
UINT WINAPI SetHandleCount( UINT count )
|
||||
{
|
||||
return min( 256, count );
|
||||
return count;
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue