DOT11_MSONEX_RESULT - NtDoc

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

typedef enum _DOT11_MSONEX_RESULT {
  DOT11_MSONEX_SUCCESS      = 0,
  DOT11_MSONEX_FAILURE      = 1,
  DOT11_MSONEX_IN_PROGRESS  = 2
} DOT11_MSONEX_RESULT, *PDOT11_MSONEX_RESULT;
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (ne-wlanihv-_dot11_msonex_result)

_DOT11_MSONEX_RESULT enumeration

Description

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_MSONEX_RESULT enumeration defines the results of the 802.1X authentication operation performed by the operating system through a call to the Dot11ExtStartOneX function.

Constants

DOT11_MSONEX_SUCCESS

The 802.1X authentication operation succeeded.

DOT11_MSONEX_FAILURE

The 802.1X authentication operation failed.

DOT11_MSONEX_IN_PROGRESS

The 802.1X authentication operation is in progress.

Syntax

typedef enum _DOT11_MSONEX_RESULT {
  DOT11_MSONEX_SUCCESS      = 0,
  DOT11_MSONEX_FAILURE      = 1,
  DOT11_MSONEX_IN_PROGRESS  = 2
} DOT11_MSONEX_RESULT, *PDOT11_MSONEX_RESULT;

Remarks

After the IHV Extensions DLL initiates an 802.1X authentication operation, the operating system calls the Dot11ExtIhvOneXIndicateResult IHV handler function to complete the operation. When it calls this function, the operating system passes a DOT11_MSONEX_RESULT value to the OneXResult parameter to specify the result of the authentication operation.

See also

Dot11ExtIhvOneXIndicateResult

Dot11ExtStartOneX