ntoskrnl.exe: Add KeSetTimerEx stub.

Signed-off-by: Austin English <austinenglish@gmail.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Austin English 2016-11-04 20:59:20 -05:00 committed by Alexandre Julliard
parent 4c7e136013
commit 9e443e95f2
2 changed files with 10 additions and 1 deletions

View File

@ -3150,3 +3150,12 @@ void WINAPI IoInvalidateDeviceRelations( DEVICE_OBJECT *device_object, DEVICE_RE
break; break;
} }
} }
/***********************************************************************
* KeSetTimerEx (NTOSKRNL.EXE.@)
*/
BOOL WINAPI KeSetTimerEx( KTIMER *timer, LARGE_INTEGER duetime, LONG period, KDPC *dpc )
{
FIXME("stub: %p %s %u %p\n", timer, wine_dbgstr_longlong(duetime.QuadPart), period, dpc);
return TRUE;
}

View File

@ -618,7 +618,7 @@
@ stub KeSetTargetProcessorDpc @ stub KeSetTargetProcessorDpc
@ stub KeSetTimeIncrement @ stub KeSetTimeIncrement
@ stub KeSetTimer @ stub KeSetTimer
@ stub KeSetTimerEx @ stdcall KeSetTimerEx(ptr int64 long ptr)
@ stub KeStackAttachProcess @ stub KeStackAttachProcess
@ stub KeSynchronizeExecution @ stub KeSynchronizeExecution
@ stub KeTerminateThread @ stub KeTerminateThread