[NDK]: Add MMVAD_SHORT.

svn path=/trunk/; revision=49202
This commit is contained in:
Sir Richard 2010-10-19 16:57:20 +00:00
parent 52d26f0643
commit 24811e9233

View file

@ -740,6 +740,27 @@ typedef struct _MMVAD_LONG
} u4;
} 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
//