ntoskrnl.exe: Add KeWaitForMultipleObjects stub.

Signed-off-by: Austin English <austinenglish@gmail.com>
Signed-off-by: Sebastian Lackner <sebastian@fds-team.de>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Austin English 2014-12-24 15:35:23 -06:00 committed by Alexandre Julliard
parent c3dc9edc25
commit ce9b40d79b
2 changed files with 14 additions and 1 deletions

View File

@ -1998,6 +1998,19 @@ NTSTATUS WINAPI KeWaitForSingleObject(PVOID Object,
return STATUS_NOT_IMPLEMENTED;
}
/***********************************************************************
* KeWaitForMultipleObjects (NTOSKRNL.EXE.@)
*/
NTSTATUS WINAPI KeWaitForMultipleObjects(ULONG Count, PVOID Object[], WAIT_TYPE WaitType,
KWAIT_REASON WaitReason, KPROCESSOR_MODE WaitMode,
BOOLEAN Alertable, PLARGE_INTEGER Timeout,
PKWAIT_BLOCK WaitBlockArray)
{
FIXME( "stub: %u, %p, %d, %d, %d, %d, %p, %p\n", Count, Object, WaitType, WaitReason, WaitMode,
Alertable, Timeout, WaitBlockArray );
return STATUS_NOT_IMPLEMENTED;
}
/***********************************************************************
* IoRegisterFileSystem (NTOSKRNL.EXE.@)
*/

View File

@ -629,7 +629,7 @@
@ stub KeUpdateRunTime
@ stub KeUpdateSystemTime
@ stub KeUserModeCallback
@ stub KeWaitForMultipleObjects
@ stdcall KeWaitForMultipleObjects(long ptr long long long long ptr ptr)
@ stdcall KeWaitForMutexObject(ptr long long long ptr)
@ stdcall KeWaitForSingleObject(ptr long long long ptr)
@ stub KiBugCheckData