[DDK/XDK]

Fix non-x86 definition of KTIMER

svn path=/trunk/; revision=56287
This commit is contained in:
Timo Kreuzer 2012-03-31 10:55:43 +00:00
parent c3018a4ee1
commit 1aa685de30
2 changed files with 4 additions and 4 deletions

View file

@ -1406,7 +1406,7 @@ typedef struct _KTIMER {
ULARGE_INTEGER DueTime; ULARGE_INTEGER DueTime;
LIST_ENTRY TimerListEntry; LIST_ENTRY TimerListEntry;
struct _KDPC *Dpc; struct _KDPC *Dpc;
# if !defined(_X86_) #if (NTDDI_VERSION >= NTDDI_WIN7) && !defined(_X86_)
ULONG Processor; ULONG Processor;
#endif #endif
ULONG Period; ULONG Period;

View file

@ -836,7 +836,7 @@ typedef struct _KTIMER {
ULARGE_INTEGER DueTime; ULARGE_INTEGER DueTime;
LIST_ENTRY TimerListEntry; LIST_ENTRY TimerListEntry;
struct _KDPC *Dpc; struct _KDPC *Dpc;
# if !defined(_X86_) #if (NTDDI_VERSION >= NTDDI_WIN7) && !defined(_X86_)
ULONG Processor; ULONG Processor;
#endif #endif
ULONG Period; ULONG Period;