mirror of
https://github.com/reactos/reactos.git
synced 2025-02-24 17:34:57 +00:00
[DDK/XDK]
Fix non-x86 definition of KTIMER svn path=/trunk/; revision=56287
This commit is contained in:
parent
c3018a4ee1
commit
1aa685de30
2 changed files with 4 additions and 4 deletions
|
@ -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;
|
||||
|
||||
|
|
|
@ -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;
|
||||
|
||||
|
|
Loading…
Reference in a new issue