mirror of
https://github.com/reactos/reactos.git
synced 2025-01-07 14:51:00 +00:00
[NDK]: Add MMVAD_SHORT.
svn path=/trunk/; revision=49202
This commit is contained in:
parent
52d26f0643
commit
24811e9233
1 changed files with 21 additions and 0 deletions
|
@ -740,6 +740,27 @@ typedef struct _MMVAD_LONG
|
||||||
} u4;
|
} u4;
|
||||||
} MMVAD_LONG, *PMMVAD_LONG;
|
} MMVAD_LONG, *PMMVAD_LONG;
|
||||||
|
|
||||||
|
//
|
||||||
|
// Short VAD used in virtual memory allocations
|
||||||
|
//
|
||||||
|
typedef struct _MMVAD_SHORT
|
||||||
|
{
|
||||||
|
union
|
||||||
|
{
|
||||||
|
LONG_PTR Balance:2;
|
||||||
|
PMMVAD Parent;
|
||||||
|
} u1;
|
||||||
|
PMMVAD LeftChild;
|
||||||
|
PMMVAD RightChild;
|
||||||
|
ULONG StartingVpn;
|
||||||
|
ULONG EndingVpn;
|
||||||
|
union
|
||||||
|
{
|
||||||
|
ULONG LongFlags;
|
||||||
|
MMVAD_FLAGS VadFlags;
|
||||||
|
} u;
|
||||||
|
} MMVAD_SHORT, *PMMVAD_SHORT;
|
||||||
|
|
||||||
//
|
//
|
||||||
// Actual Section Object
|
// Actual Section Object
|
||||||
//
|
//
|
||||||
|
|
Loading…
Reference in a new issue