[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,9 +1406,9 @@ typedef struct _KTIMER {
ULARGE_INTEGER DueTime;
LIST_ENTRY TimerListEntry;
struct _KDPC *Dpc;
# if !defined(_X86_)
#if (NTDDI_VERSION >= NTDDI_WIN7) && !defined(_X86_)
ULONG Processor;
# endif
#endif
ULONG Period;
} KTIMER, *PKTIMER, *RESTRICTED_POINTER PRKTIMER;

View file

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