DOT11_STATUS_INDICATION 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_STATUS_INDICATION structure returns the completion results of an operation that is performed by a set request of a Native 802.11 OID.

Syntax

typedef struct _DOT11_STATUS_INDICATION {
  ULONG       uStatusType;
  NDIS_STATUS ndisStatus;
} DOT11_STATUS_INDICATION, *PDOT11_STATUS_INDICATION;

Members

uStatusType

The type of status indication that is made by the miniport driver.

For more information about the value that is used for the uStatusType member, see the topic for the OID that requires a completion indication that uses the DOT11_STATUS_INDICATION structure.

ndisStatus

An NDIS_STATUS value that indicates the result of the operation.

If the operation completed without a failure, the miniport driver must set the ndisStatus member to NDIS_STATUS_SUCCESS. Otherwise, the driver must set ndisStatus to the appropriate NDIS_STATUS_xxx value for the failure.

Remarks

For the Windows Vista operating system, only OID_DOT11_RESET_REQUEST requires the use of the DOT11_STATUS_INDICATION structure for completion indications.

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

OID_DOT11_RESET_REQUEST