// windot11.h
typedef enum _DOT11_WFD_SCAN_TYPE {
dot11_wfd_scan_type_active = 1,
dot11_wfd_scan_type_passive = 2,
dot11_wfd_scan_type_auto = 3
} DOT11_WFD_SCAN_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_SCAN_TYPE enumeration indicates the type of scan used during the scan phase of device discovery.
dot11_wfd_scan_type_activeUse active scanning for device discovery.
dot11_wfd_scan_type_passiveUse passive scanning during device discovery.
dot11_wfd_scan_type_autoDriver selected scanning is used.
typedef enum _DOT11_WFD_SCAN_TYPE {
dot11_wfd_scan_type_active = 1,
dot11_wfd_scan_type_passive = 2,
dot11_wfd_scan_type_auto = 3
} DOT11_WFD_SCAN_TYPE;
The system will set only one scan type at a time. The driver should use this setting to determine how it scans during device discovery.
OID_DOT11_WFD_DISCOVER_REQUEST