// storport.h
typedef struct _STOR_SCATTER_GATHER_LIST {
ULONG NumberOfElements;
ULONG_PTR Reserved;
STOR_SCATTER_GATHER_ELEMENT List[];
} STOR_SCATTER_GATHER_LIST, *PSTOR_SCATTER_GATHER_LIST;
View the official Windows Driver Kit DDI referenceNo description available.
The STOR_SCATTER_GATHER_LIST structure is used in conjunction with the StorPortGetScatterGatherList routine to retrieve the scatter/gather list for a SCSI request block (SRB).
NumberOfElementsContains the number of scatter/gather elements in the list.
ReservedReserved.
ListContains the array of scatter/gather elements.
Miniport drivers that work with the Storport driver call the Storport support routine, StorPortGetScatterGatherList, to retrieve the scatter gather list for an SRB. StorPortGetScatterGatherList returns a structure of type STOR_SCATTER_GATHER_LIST. Each scatter/gather element is of type STOR_SCATTER_GATHER_ELEMENT.