commit | fbbd91544f2ad1cb179ee6f3cbe124f8a9b79f18 | [log] [tgz] |
---|---|---|
author | James Hawkins <truiken@gmail.com> | Mon Jun 18 14:19:09 2007 -0700 |
committer | Alexandre Julliard <julliard@winehq.org> | Tue Jun 19 12:56:00 2007 +0200 |
tree | f03c783080f3f2fd3f61fa40815ba94dc0aaaec0 | |
parent | c46cacc81683ae7d443d9a9383baa2bf8622f165 [diff] [blame] |
ntoskrnl.exe: Add a stub implementation of KeInitializeTimer.
diff --git a/include/ddk/wdm.h b/include/ddk/wdm.h index 38b3625..8aabf79 100644 --- a/include/ddk/wdm.h +++ b/include/ddk/wdm.h
@@ -780,6 +780,14 @@ 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;