Commit fbbd9154 authored by James Hawkins's avatar James Hawkins Committed by Alexandre Julliard

ntoskrnl.exe: Add a stub implementation of KeInitializeTimer.

parent c46cacc8
......@@ -419,6 +419,15 @@ void WINAPI ExFreePoolWithTag( void *ptr, ULONG tag )
/***********************************************************************
* KeInitializeTimer (NTOSKRNL.EXE.@)
*/
void WINAPI KeInitializeTimer( PKTIMER Timer )
{
FIXME("%p\n", Timer);
}
/***********************************************************************
* KeQuerySystemTime (NTOSKRNL.EXE.@)
*/
void WINAPI KeQuerySystemTime( LARGE_INTEGER *time )
......
......@@ -553,7 +553,7 @@
@ stub KeInitializeQueue
@ stub KeInitializeSemaphore
@ stub KeInitializeSpinLock
@ stub KeInitializeTimer
@ stdcall KeInitializeTimer(ptr)
@ stub KeInitializeTimerEx
@ stub KeInsertByKeyDeviceQueue
@ stub KeInsertDeviceQueue
......
......@@ -780,6 +780,14 @@ typedef struct _MDL {
ULONG ByteOffset;
} MDL, *PMDL;
typedef struct _KTIMER {
DISPATCHER_HEADER Header;
ULARGE_INTEGER DueTime;
LIST_ENTRY TimerListEntry;
struct _KDPC *Dpc;
LONG Period;
} KTIMER, *PKTIMER;
typedef struct _KSYSTEM_TIME {
ULONG LowPart;
LONG High1Time;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment