#ifndef _NTMMAPI_H
/**
* The MEMORY_REGION_INFORMATION_EX structure extends MEMORY_REGION_INFORMATION
* with partition and NUMA preference metadata.
*/
typedef struct _MEMORY_REGION_INFORMATION_EX
{
PVOID AllocationBase; // Base address of the allocation.
ULONG AllocationProtect; // Page protection when the allocation was created (individual pages can be different from this value).
ULONG RegionType; // Region type flags.
SIZE_T RegionSize; // The combined size of pages in the region.
SIZE_T CommitSize; // The commit charge associated with the allocation.
ULONG_PTR PartitionId; // 19H1
ULONG_PTR NodePreference; // 20H1
} MEMORY_REGION_INFORMATION_EX, *PMEMORY_REGION_INFORMATION_EX;
View code on GitHubNo description available.