// storport.h
typedef struct _MEMORY_REGION {
PUCHAR VirtualBase;
PHYSICAL_ADDRESS PhysicalBase;
ULONG Length;
} MEMORY_REGION, *PMEMORY_REGION;
View the official Windows Driver Kit DDI reference
No description available.
The MEMORY_REGION structure describes a region of physically contiguous memory.
VirtualBase
The beginning virtual address of the memory region.
PhysicalBase
The beginning physical address of the memory region.
Length
The size, in bytes, of the memory region.
The DumpRegion member of the PORT_CONFIGURATION_INFORMATION structure holds a MEMORY_REGION structure that describes a region of physically contiguous memory that a miniport driver can use during a crash dump.
PORT_CONFIGURATION_INFORMATION