// windot11.h
typedef enum _DOT11_ASSOCIATION_STATE {
dot11_assoc_state_zero = 0,
dot11_assoc_state_unauth_unassoc = 1,
dot11_assoc_state_auth_unassoc = 2,
dot11_assoc_state_auth_assoc = 3
} DOT11_ASSOCIATION_STATE, *PDOT11_ASSOCIATION_STATE;
View the official Windows Driver Kit DDI referenceNo description available.
[!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_ASSOCIATION_STATE enumeration defines the authentication and association state of an 802.11 station.
dot11_assoc_state_zeroThe association state is undefined.
dot11_assoc_state_unauth_unassocThe 802.11 station is unauthenticated with the peer and is not associated.
dot11_assoc_state_auth_unassocThe 802.11 station is authenticated with the peer but is not associated.
dot11_assoc_state_auth_assocThe 802.11 station is authenticated and associated with the peer.
typedef enum _DOT11_ASSOCIATION_STATE {
dot11_assoc_state_zero = 0,
dot11_assoc_state_unauth_unassoc = 1,
dot11_assoc_state_auth_unassoc = 2,
dot11_assoc_state_auth_assoc = 3
} DOT11_ASSOCIATION_STATE, *PDOT11_ASSOCIATION_STATE;