// wwan.h
typedef struct _WWAN_TLV_IE {
WWAN_TLV_TYPE Type;
UCHAR Reserved;
UCHAR PaddingLength;
ULONG DataLength;
} WWAN_TLV_IE, *PWWAN_TLV_IE;
View the official Windows Driver Kit DDI referenceNo description available.
WWAN_TLV_IE is a variable-sized data structure for exchanging a wide range of information between a WWAN host and a device.
TypeA two-octet IE type value identifying the information element that follows.
ReservedUnused and reserved byte. Must set to zero.
PaddingLengthLength of the Padding field in octets. Must be 0, 1, 2, or 3.
DataLengthThe length of the Data field in octets.
The padding is to ensure that the entire size of the structure is a multiple of the size of a DWORD.