WWAN_LIST_HEADER structure (wwan.h)

The WWAN_LIST_HEADER structure represents the header of a list of MB objects, including the number of objects in the list that follow the header in memory.

Syntax

typedef struct _WWAN_LIST_HEADER {
  WWAN_STRUCT_TYPE ElementType;
  ULONG            ElementCount;
} WWAN_LIST_HEADER, *PWWAN_LIST_HEADER;

Members

ElementType

A value from the WWAN_STRUCT_TYPE enumeration that represents the type of objects in the list.

ElementCount

The number of elements in the list. The MB Service uses this information to allocate and reallocate memory for the list.

Remarks

You can assume that the list of elements is stored in memory immediately following the data structure that contains the list.

Requirements

Requirement Value
Minimum supported client Available in Windows 7 and later versions of Windows.
Header wwan.h (include Wwan.h)

See also

NDIS_WWAN_PREFERRED_PROVIDERS

NDIS_WWAN_PROVISIONED_CONTEXTS NDIS_WWAN_SET_PREFERRED_PROVIDERS

NDIS_WWAN_SMS_RECEIVE

NDIS_WWAN_VISIBLE_PROVIDERS

WWAN_STRUCT_TYPE