mirror of
https://github.com/reactos/reactos.git
synced 2024-12-27 17:44:45 +00:00
Minor fixes.
svn path=/trunk/; revision=449
This commit is contained in:
parent
3f9e43cbf2
commit
6bac8b1c92
1 changed files with 33 additions and 37 deletions
|
@ -85,9 +85,6 @@ CreateSemaphoreW(
|
||||||
}
|
}
|
||||||
|
|
||||||
return SemaphoreHandle;
|
return SemaphoreHandle;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
HANDLE
|
HANDLE
|
||||||
|
@ -156,8 +153,6 @@ CreateMutexW(
|
||||||
|
|
||||||
return MutantHandle;
|
return MutantHandle;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -188,6 +183,7 @@ DWORD STDCALL WaitForSingleObjectEx(HANDLE hHandle,
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
Time.LowPart = dwMilliseconds;
|
Time.LowPart = dwMilliseconds;
|
||||||
|
Time.HighPart = 0;
|
||||||
TimePtr = &Time;
|
TimePtr = &Time;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -227,7 +223,7 @@ WaitForMultipleObjectsEx(
|
||||||
DWORD retCode;
|
DWORD retCode;
|
||||||
|
|
||||||
Time.LowPart = dwMilliseconds;
|
Time.LowPart = dwMilliseconds;
|
||||||
|
Time.HighPart = 0;
|
||||||
|
|
||||||
errCode = NtWaitForMultipleObjects (
|
errCode = NtWaitForMultipleObjects (
|
||||||
nCount,
|
nCount,
|
||||||
|
|
Loading…
Reference in a new issue