DOT11_WFD_DISCOVER_COMPLETE_PARAMETERS structure (windot11.h)

Important  The Native 802.11 Wireless LAN interface is deprecated in Windows 10 and later. Please use the WLAN Device Driver Interface (WDI) instead. For more information about WDI, see WLAN Universal Windows driver model.
 
the DOT11_WFD_DISCOVER_COMPLETE_PARAMETERS structure is returned in a NDIS_STATUS_DOT11_WFD_DISCOVER_COMPLETE indication. The structure contains a list of devices discovered

Syntax

typedef struct _DOT11_WFD_DISCOVER_COMPLETE_PARAMETERS {
  NDIS_OBJECT_HEADER Header;
  NDIS_STATUS        Status;
  ULONG              uNumOfEntries;
  ULONG              uTotalNumOfEntries;
  ULONG              uListOffset;
  ULONG              uListLength;
} DOT11_WFD_DISCOVER_COMPLETE_PARAMETERS, *PDOT11_WFD_DISCOVER_COMPLETE_PARAMETERS;

Members

Header

Specifies the type, revision and size of the DOT11_WFD_DISCOVER_COMPLETE_PARAMETERS structure. The required settings for the members of Header are the following:

Member Setting
Type NDIS_OBJECT_TYPE_DEFAULT
Revision DOT11_WFD_DISCOVER_COMPLETE_PARAMETERS_REVISION_1
Size DOT11_SIZEOF_WFD_DISCOVER_COMPLETE_PARAMETERS_REVISION_1

Status

The appropriate status code for the device discovery operation. If this value is not NDIS_STATUS_SUCCESS, the rest of the members in this structure must be set to 0.

uNumOfEntries

The total number of discovered devices in the list at uListOffset. The number of entries cannot exceed DOT11_WFD_DISCOVER_COMPLETE_MAX_LIST_SIZE.

uTotalNumOfEntries

The total number of discovered devices in actually discovered by the driver. The number of entries cannot exceed DOT11_WFD_DISCOVER_COMPLETE_MAX_LIST_SIZE.

uListOffset

The offset in the StatusBuffer of NDIS_STATUS_INDICATION where the list of DOT11_WFD_DEVICE_ENTRY elements begins.

uListLength

The length, in bytes of the device list at uListOffset.

Requirements

Requirement Value
Minimum supported client Versions:_Supported in Windows 8
Header windot11.h (include Windot11.h)

See also

NDIS_STATUS_DOT11_WFD_DISCOVER_COMPLETE