// dot11wificxtypes.h
typedef enum _WDI_ACTION_FRAME_CATEGORY {
WDI_ACTION_FRAME_CATEGORY_SPECTRUM_MANAGEMENT = 0,
WDI_ACTION_FRAME_CATEGORY_QOS = 1,
WDI_ACTION_FRAME_CATEGORY_RESERVED = 2,
WDI_ACTION_FRAME_CATEGORY_BLOCK_ACK = 3,
WDI_ACTION_FRAME_CATEGORY_PUBLIC = 4,
WDI_ACTION_FRAME_CATEGORY_RADIO_MEASUREMENT = 5,
WDI_ACTION_FRAME_CATEGORY_FAST_BSS_TRANSITION = 6,
WDI_ACTION_FRAME_CATEGORY_HT = 7,
WDI_ACTION_FRAME_CATEGORY_SA_QUERY = 8,
WDI_ACTION_FRAME_CATEGORY_PROTECTED_DUAL_OF_PUBLIC_ACTION = 9,
WDI_ACTION_FRAME_CATEGORY_WNM = 10,
WDI_ACTION_FRAME_CATEGORY_UNPROTECTED_WNM = 11,
WDI_ACTION_FRAME_CATEGORY_ROBUST_AV_STREAMING = 19
} WDI_ACTION_FRAME_CATEGORY;
View the official Windows Driver Kit DDI reference// wditypes.h
typedef enum _WDI_ACTION_FRAME_CATEGORY {
WDI_ACTION_FRAME_CATEGORY_PUBLIC,
WDI_ACTION_FRAME_CATEGORY_RADIO_MEASUREMENT,
WDI_ACTION_FRAME_CATEGORY_FAST_BSS_TRANSITION,
WDI_ACTION_FRAME_CATEGORY_WNM
} WDI_ACTION_FRAME_CATEGORY;
View the official Windows Driver Kit DDI referenceNo description available.
[!IMPORTANT] This topic is part of the WiFiCx driver model. WiFiCx is the Wi-Fi driver model released in Windows 11. We recommend that you use WiFiCx to take advantage of the latest features. The previous Wi-Fi driver model WDI is in maintenance mode and will only receive high priority fixes.
The WDI_ACTION_FRAME_CATEGORY enumeration defines action frame categories.
WDI_ACTION_FRAME_CATEGORY_SPECTRUM_MANAGEMENT:0Spectrum Management Action frame category.
WDI_ACTION_FRAME_CATEGORY_QOS:1QoS Action frame category.
WDI_ACTION_FRAME_CATEGORY_RESERVED:2Reserved.
WDI_ACTION_FRAME_CATEGORY_BLOCK_ACK:3Block Acknowledgement Action frame category.
WDI_ACTION_FRAME_CATEGORY_PUBLIC:4Public Action frame category. It is used in:
WDI_ACTION_FRAME_CATEGORY_RADIO_MEASUREMENT:5Radio Measurement Report frame category. It is transmitted by a STA requesting another STA to make one or more measurements on one or more channels.
WDI_ACTION_FRAME_CATEGORY_FAST_BSS_TRANSITION:6Fast BSS Transition Action frame category. It is used by a currently-associated AP to enable fast BSS transitions over the DS. Over the DS transitions are not supported in Windows 10.
WDI_ACTION_FRAME_CATEGORY_HT:7HT Action frame category.
WDI_ACTION_FRAME_CATEGORY_SA_QUERY:8SA Query Action frame category.
WDI_ACTION_FRAME_CATEGORY_PROTECTED_DUAL_OF_PUBLIC_ACTION:9Protected Dual of Public Action frame category.
WDI_ACTION_FRAME_CATEGORY_WNM:10Wireless Network Management Action frame category. In Windows 10, it is only used for handling BSS Transition Management requests/responses.
WDI_ACTION_FRAME_CATEGORY_UNPROTECTED_WNM:11Unprotected Wireless Network Management Action frame category.
WDI_ACTION_FRAME_CATEGORY_ROBUST_AV_STREAMING:19Robust AV Streaming Action frame category.
[!IMPORTANT] This topic is part of the WDI driver model released in Windows 10. The WDI driver model is in maintenance mode and will only receive high priority fixes. WiFiCx is the Wi-Fi driver model released in Windows 11. We recommend that you use WiFiCx to take advantage of the latest features.
The WDI_ACTION_FRAME_CATEGORY enumeration defines the action frame categories.
WDI_ACTION_FRAME_CATEGORY_PUBLICSpecifies a Public Action frame. It is used in:
WDI_ACTION_FRAME_CATEGORY_RADIO_MEASUREMENTSpecifies a Radio Measurement Report frame. It is transmitted by a STA requesting another STA to make one or more measurements on one or more channels.
WDI_ACTION_FRAME_CATEGORY_FAST_BSS_TRANSITIONSpecifies a Fast BSS Transition Action frame. It is used by a currently-associated AP to enable fast BSS transitions over the DS. Over the DS transitions are not supported in Windows 10.
WDI_ACTION_FRAME_CATEGORY_WNMSpecifies a Wireless Network Management Action frame. In Windows 10, it is only used for handling BSS Transition Management requests/responses.