// windot11.h
typedef enum _DOT11_POWER_MODE_REASON {
dot11_power_mode_reason_no_change = 0,
dot11_power_mode_reason_noncompliant_AP = 1,
dot11_power_mode_reason_legacy_WFD_device = 2,
dot11_power_mode_reason_compliant_AP = 3,
dot11_power_mode_reason_compliant_WFD_device = 4,
dot11_power_mode_reason_others = 5
} DOT11_POWER_MODE_REASON;
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_POWER_MODE_REASON lists the different reasons for changes to auto power save mode state.
dot11_power_mode_reason_no_changeDevice is initially in this state and has not changed since.
dot11_power_mode_reason_noncompliant_APAP is not compliant. As to be in CAM.
dot11_power_mode_reason_legacy_WFD_deviceWFD device is legacy.
dot11_power_mode_reason_compliant_APAP is compliant.
dot11_power_mode_reason_compliant_WFD_deviceAll connected WFD device can do PSM.
dot11_power_mode_reason_othersOther reason.
typedef enum _DOT11_POWER_MODE_REASON {
dot11_power_mode_reason_no_change = 0,
dot11_power_mode_reason_noncompliant_AP = 1,
dot11_power_mode_reason_legacy_WFD_device = 2,
dot11_power_mode_reason_compliant_AP = 3,
dot11_power_mode_reason_compliant_WFD_device = 4,
dot11_power_mode_reason_others = 5
} DOT11_POWER_MODE_REASON;