WWAN_SUPPORTED_DEVICE_SERVICES - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
// 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 reference

NtDoc

No description available.

Windows Driver Kit DDI reference (ns-wwan-_wwan_supported_device_services)

_WWAN_SUPPORTED_DEVICE_SERVICES structure

Description

The WWAN_SUPPORTED_DEVICE_SERVICES structure describes information about device services supported by the miniport driver.

Members

uMaxCommandDataSize

The maximum size, in bytes, of data that can be associated with a device service command.

uMaxSessionDataSize

The maximum size, in bytes, of data that can be associated with a device service session.

uMaxSessionCount

The maximum number of device service sessions supported by the miniport driver.

ListHeader

A 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.

See also

NDIS_WWAN_SUPPORTED_DEVICE_SERVICES

WWAN_DEVICE_SERVICE_ENTRY

WWAN_LIST_HEADER