mirror of
https://github.com/reactos/reactos.git
synced 2025-02-25 01:39:30 +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,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;
|
||||||
|
|
|
@ -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;
|
||||||
|
|
Loading…
Reference in a new issue