// windot11.h
typedef struct _DOT11_WFD_DEVICE_TYPE {
USHORT CategoryID;
USHORT SubCategoryID;
UCHAR OUI[4];
} DOT11_WFD_DEVICE_TYPE, *PDOT11_WFD_DEVICE_TYPE;
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_WFD_DEVICE_TYPE structure is used to specify primary and secondary device types.
CategoryIDThe identifier of the main type category.
SubCategoryIDThe identifier of the type subcategory.
OUIThe Organizationally Unique Identifier (OUI) assigned to a device.
typedef struct _DOT11_WFD_DEVICE_TYPE {
USHORT CategoryID;
USHORT SubCategoryID;
UCHAR OUI[4];
} DOT11_WFD_DEVICE_TYPE, *PDOT11_WFD_DEVICE_TYPE;
The DOT11_WFD_DEVICE_TYPE data is provided in host byte-ordering. The miniport may need to convert the data to an ordering appropriate for inclusion in Peer-to-Peer Information Elements.