// wwan.h
typedef struct _WWAN_OFFSET_SIZE_ELEMENT {
ULONG Offset;
ULONG Size;
} WWAN_OFFSET_SIZE_ELEMENT, *PWWAN_OFFSET_SIZE_ELEMENT;
View the official Windows Driver Kit DDI referenceNo description available.
The WWAN_OFFSET_SIZE_ELEMENT structure contains the size and offset to a data buffer.
OffsetThe first 4 bytes of WWAN_OFFSET_SIZE_ELEMENT are the offset to the data buffer, calculated from the beginning of the structure that contains WWAN_OFFSET_SIZE_ELEMENT.
SizeThe second 4 bytes of WWAN_OFFSET_SIZE_ELEMENT are the size of the raw data of the data buffer, in bytes.