WWAN_DRIVER_CAPS structure (wwan.h)

The WWAN_DRIVER_CAPS structure represents the capabilities of the miniport driver.

Syntax

typedef struct _WWAN_DRIVER_CAPS {
  ULONG ulMajorVersion;
  ULONG ulMinorVersion;
  ULONG ulDriverCaps;
} WWAN_DRIVER_CAPS, *PWWAN_DRIVER_CAPS;

Members

ulMajorVersion

The major version of the MB driver model that the miniport driver supports. Miniport drivers should set this member to WWAN_MAJOR_VERSION.

ulMinorVersion

The minor version of the MB driver model that the miniport driver supports. Miniport drivers should set this member to WWAN_MINOR_VERSION.

ulDriverCaps

This member is reserved for future use. Miniport drivers should set this member to the value in the following table.

WWAN_DRIVER_CAPS_NONE

The miniport driver has no special capabilities.

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_DRIVER_CAPS