// video.h
typedef struct _VP_SCATTER_GATHER_ELEMENT {
PHYSICAL_ADDRESS Address;
ULONG Length;
ULONG_PTR Reserved;
} VP_SCATTER_GATHER_ELEMENT, *PVP_SCATTER_GATHER_ELEMENT;
View the official Windows Driver Kit DDI referenceNo description available.
The VP_SCATTER_GATHER_ELEMENT structure is used to store information about a single scatter/gather element.
AddressSpecifies the logical address of one scatter/gather element.
LengthSpecifies the length, in bytes, of the scatter/gather element.
ReservedReserved for system use.
This structure is available in Windows XP and later.
A VP_SCATTER_GATHER_ELEMENT structure is one element of the VP_SCATTER_GATHER_LIST structure's array member.