#ifndef _NTMMAPI_H
#if (PHNT_MODE != PHNT_MODE_KERNEL)
#if (PHNT_VERSION >= PHNT_WINDOWS_8)
/**
* The MEMORY_RANGE_ENTRY structure describes a contiguous region of virtual address space.
*/
typedef struct _MEMORY_RANGE_ENTRY
{
PVOID VirtualAddress; // A pointer to the starting virtual address of the region.
SIZE_T NumberOfBytes; // The size, in bytes, of the region.
} MEMORY_RANGE_ENTRY, *PMEMORY_RANGE_ENTRY;
View code on GitHubThis structure is documented in Windows SDK.