MEMORY_REGION_INFORMATION_EX - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
#ifndef _NTMMAPI_H

// private
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;

#endif

View code on GitHub

NtDoc

No description available.