(storport.h) MEMORY_REGION 结构
MEMORY_REGION 结构描述物理连续内存的区域。
语法
typedef struct _MEMORY_REGION {
PUCHAR VirtualBase;
PHYSICAL_ADDRESS PhysicalBase;
ULONG Length;
} MEMORY_REGION, *PMEMORY_REGION;
成员
VirtualBase
内存区域的起始虚拟地址。
PhysicalBase
内存区域的起始物理地址。
Length
内存区域的大小(以字节为单位)。
注解
PORT_CONFIGURATION_INFORMATION 结构的 DumpRegion 成员包含一个MEMORY_REGION结构,该结构描述微型端口驱动程序可以在故障转储期间使用的物理连续内存区域。
要求
要求 | 值 |
---|---|
Header | storport.h (包括 Storport.h) |