DOT11_ROAMING_COMPLETION_PARAMETERS structure (windot11.h)

Important  The Native 802.11 Wireless LAN interface is deprecated in Windows 10 and later. Please use the WLAN Device Driver Interface (WDI) instead. For more information about WDI, see WLAN Universal Windows driver model.
 
The DOT11_ROAMING_COMPLETION_PARAMETERS structure specifies the completion results of the roaming operation performed by the Native 802.11 miniport driver. The driver includes a DOT11_ROAMING_COMPLETION_PARAMETERS structure when the driver makes an NDIS_STATUS_DOT11_ROAMING_COMPLETION status indication.

Syntax

typedef struct DOT11_ROAMING_COMPLETION_PARAMETERS {
  NDIS_OBJECT_HEADER Header;
  DOT11_ASSOC_STATUS uStatus;
} DOT11_ROAMING_COMPLETION_PARAMETERS, *PDOT11_ROAMING_COMPLETION_PARAMETERS;

Members

Header

The type, revision, and size of the DOT11_ROAMING_COMPLETION_PARAMETERS structure. This member is formatted as an NDIS_OBJECT_HEADER structure.

The miniport driver must set the members of Header to the following values:

Type

This member must be set to NDIS_OBJECT_TYPE_DEFAULT.

Revision

This member must be set to DOT11_ROAMING_COMPLETION_PARAMETERS_REVISION_1.

Size

This member must be set to sizeof(DOT11_ROAMING_COMPLETION_PARAMETERS).

For more information about these members, see NDIS_OBJECT_HEADER.

uStatus

The completion status of the roaming operation formatted as a DOT11_ASSOC_STATUS value.

Remarks

For more information about the roaming operation, see Roaming Operations.

Requirements

Requirement Value
Minimum supported client Available in Windows Vista and later versions of the Windows operating systems.
Header windot11.h (include Ndis.h)

See also

NDIS_STATUS_DOT11_ROAMING_COMPLETION

DOT11_ASSOC_STATUS