mirror of
https://github.com/reactos/reactos.git
synced 2025-02-24 17:34:57 +00:00
- NDK fix: ImageUsesLargePages in PEB appeared in Windows 2003 already (confirmed with SP1 though).
svn path=/trunk/; revision=34134
This commit is contained in:
parent
ff2f89953a
commit
0cac013600
1 changed files with 5 additions and 1 deletions
|
@ -575,13 +575,17 @@ typedef struct _PEB
|
|||
UCHAR InheritedAddressSpace;
|
||||
UCHAR ReadImageFileExecOptions;
|
||||
UCHAR BeingDebugged;
|
||||
#if (NTDDI_VERSION >= NTDDI_LONGHORN)
|
||||
#if (NTDDI_VERSION >= NTDDI_WS03)
|
||||
struct
|
||||
{
|
||||
UCHAR ImageUsesLargePages:1;
|
||||
#if (NTDDI_VERSION >= NTDDI_LONGHORN)
|
||||
UCHAR IsProtectedProcess:1;
|
||||
UCHAR IsLegacyProcess:1;
|
||||
UCHAR SpareBits:5;
|
||||
#else
|
||||
UCHAR SpareBits:7;
|
||||
#endif
|
||||
};
|
||||
#else
|
||||
BOOLEAN SpareBool;
|
||||
|
|
Loading…
Reference in a new issue