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:
parent
4c7e136013
commit
9e443e95f2
|
@ -3150,3 +3150,12 @@ void WINAPI IoInvalidateDeviceRelations( DEVICE_OBJECT *device_object, DEVICE_RE
|
|||
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;
|
||||
}
|
||||
|
|
|
@ -618,7 +618,7 @@
|
|||
@ stub KeSetTargetProcessorDpc
|
||||
@ stub KeSetTimeIncrement
|
||||
@ stub KeSetTimer
|
||||
@ stub KeSetTimerEx
|
||||
@ stdcall KeSetTimerEx(ptr int64 long ptr)
|
||||
@ stub KeStackAttachProcess
|
||||
@ stub KeSynchronizeExecution
|
||||
@ stub KeTerminateThread
|
||||
|
|
Loading…
Reference in New Issue