// storport.h
typedef struct _STOR_SCATTER_GATHER_ELEMENT {
STOR_PHYSICAL_ADDRESS PhysicalAddress;
ULONG Length;
ULONG_PTR Reserved;
} STOR_SCATTER_GATHER_ELEMENT, *PSTOR_SCATTER_GATHER_ELEMENT;
View the official Windows Driver Kit DDI referenceNo description available.
The STOR_SCATTER_GATHER_ELEMENT structure is used with STOR_SCATTER_GATHER_LIST to build a list of scatter/gather elements.
PhysicalAddressContains the physical address of the scatter/gather element.
LengthContains the length in bytes of this scatter/gather element.
ReservedReserved.
Miniport drivers used with the Storport driver retrieve an array of these structures using StorPortGetScatterGatherList.