// windot11.h
typedef struct _DOT11_CURRENT_OPERATION_MODE {
ULONG uReserved;
ULONG uCurrentOpMode;
} DOT11_CURRENT_OPERATION_MODE, *PDOT11_CURRENT_OPERATION_MODE;
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_CURRENT_OPERATION_MODE structure defines the current Native 802.11 operation mode on the instance of a miniport driver that manages a wireless LAN (WLAN) adapter.
uReservedThis member is reserved. The miniport driver must not modify the value of this member.
uCurrentOpModeA bitmask of the miniport driver's current operation modes. This bitmask is defined through the following:
Specifies that the miniport driver supports the Extensible Access Point (ExtAP) operation mode.
This value is available starting with Windows 7.
Specifies that the miniport driver supports the Extensible Station (ExtSTA) operation mode.
Specifies that the miniport driver supports the Network Monitor (NetMon) operation mode.
Specifies that the miniport driver supports the Wi-Fi Direct Device operation mode. This mode is available starting in Windows 8.
Specifies that the miniport driver supports the Wi-Fi Direct Group Owner operation mode.This mode is available starting in Windows 8.
Specifies that the miniport driver supports the Wi-Fi Direct Client operation mode. This mode is available starting in Windows 8.
For more information about operation modes, see Native 802.11 Operation Modes.
typedef struct _DOT11_CURRENT_OPERATION_MODE {
ULONG uReserved;
ULONG uCurrentOpMode;
} DOT11_CURRENT_OPERATION_MODE, *PDOT11_CURRENT_OPERATION_MODE;
The miniport driver must specify only one operation mode in the uCurrentOpMode member.
For more information about Native 802.11 operation modes, see Native 802.11 Operation Modes.
OID_DOT11_CURRENT_OPERATION_MODE