mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-09-02 12:23:31 +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:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user