Commit e793f9b0 authored by Louis Lenders's avatar Louis Lenders Committed by Alexandre Julliard

kernel32: Change SetHandleCount to match behaviour on versions >WINNT.

parent a161d595
...@@ -1192,7 +1192,7 @@ BOOL WINAPI UnlockFileEx( HANDLE hFile, DWORD reserved, DWORD count_low, DWORD c ...@@ -1192,7 +1192,7 @@ BOOL WINAPI UnlockFileEx( HANDLE hFile, DWORD reserved, DWORD count_low, DWORD c
*/ */
UINT WINAPI SetHandleCount( UINT count ) UINT WINAPI SetHandleCount( UINT count )
{ {
return min( 256, count ); return count;
} }
......
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