mirror of
https://github.com/reactos/reactos.git
synced 2024-12-27 01:24:38 +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;
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
HANDLE
|
||||
|
@ -156,8 +153,6 @@ CreateMutexW(
|
|||
|
||||
return MutantHandle;
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
@ -188,6 +183,7 @@ DWORD STDCALL WaitForSingleObjectEx(HANDLE hHandle,
|
|||
else
|
||||
{
|
||||
Time.LowPart = dwMilliseconds;
|
||||
Time.HighPart = 0;
|
||||
TimePtr = &Time;
|
||||
}
|
||||
|
||||
|
@ -227,7 +223,7 @@ WaitForMultipleObjectsEx(
|
|||
DWORD retCode;
|
||||
|
||||
Time.LowPart = dwMilliseconds;
|
||||
|
||||
Time.HighPart = 0;
|
||||
|
||||
errCode = NtWaitForMultipleObjects (
|
||||
nCount,
|
||||
|
|
Loading…
Reference in a new issue