// wwan.h
typedef struct _WWAN_SUPPORTED_DEVICE_SERVICES {
ULONG uMaxCommandDataSize;
ULONG uMaxSessionDataSize;
ULONG uMaxSessionCount;
WWAN_LIST_HEADER ListHeader;
} WWAN_SUPPORTED_DEVICE_SERVICES, *PWWAN_SUPPORTED_DEVICE_SERVICES;
View the official Windows Driver Kit DDI referenceNo description available.
The WWAN_SUPPORTED_DEVICE_SERVICES structure describes information about device services supported by the miniport driver.
uMaxCommandDataSizeThe maximum size, in bytes, of data that can be associated with a device service command.
uMaxSessionDataSizeThe maximum size, in bytes, of data that can be associated with a device service session.
uMaxSessionCountThe maximum number of device service sessions supported by the miniport driver.
ListHeaderA formatted WWAN_LIST_HEADER object that represents a list of supported device services and the number of services in the list.
This member points to the list of the WWAN_DEVICE_SERVICE_ENTRY by using the WWAN_LIST_HEADER structure.
NDIS_WWAN_SUPPORTED_DEVICE_SERVICES