ntoskrnl.exe: Add a stub implementation of KeInitializeTimer.
This commit is contained in:
parent
c46cacc816
commit
fbbd91544f
|
@ -418,6 +418,15 @@ void WINAPI ExFreePoolWithTag( void *ptr, ULONG tag )
|
|||
}
|
||||
|
||||
|
||||
/***********************************************************************
|
||||
* KeInitializeTimer (NTOSKRNL.EXE.@)
|
||||
*/
|
||||
void WINAPI KeInitializeTimer( PKTIMER Timer )
|
||||
{
|
||||
FIXME("%p\n", Timer);
|
||||
}
|
||||
|
||||
|
||||
/***********************************************************************
|
||||
* KeQuerySystemTime (NTOSKRNL.EXE.@)
|
||||
*/
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue