DOT11_ROAMING_COMPLETION_PARAMETERS - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
// windot11.h

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

View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (ns-windot11-dot11_roaming_completion_parameters)

DOT11_ROAMING_COMPLETION_PARAMETERS structure

Description

[!Important] WiFiCx is the new Wi-Fi driver model released in Windows 11. We recommend that you use WiFiCx to take advantage of the latest features. The WDI driver model is now in maintenance mode and will only receive high priority fixes.

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.

Members

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.

Syntax

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

Remarks

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

See also

NDIS_STATUS_DOT11_ROAMING_COMPLETION

DOT11_ASSOC_STATUS