// windot11.h
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;
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_DISCOVER_COMPLETE_PARAMETERS structure is returned in a NDIS_STATUS_DOT11_WFD_DISCOVER_COMPLETE indication. The structure contains a list of devices discovered
HeaderSpecifies 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 |
StatusThe 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.
uNumOfEntriesThe total number of discovered devices in the list at uListOffset. The number of entries cannot exceed DOT11_WFD_DISCOVER_COMPLETE_MAX_LIST_SIZE.
uTotalNumOfEntriesThe total number of discovered devices in actually discovered by the driver. The number of entries cannot exceed DOT11_WFD_DISCOVER_COMPLETE_MAX_LIST_SIZE.
uListOffsetThe offset in the StatusBuffer of NDIS_STATUS_INDICATION where the list of DOT11_WFD_DEVICE_ENTRY elements begins.
uListLengthThe length, in bytes of the device list at uListOffset.
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;
NDIS_STATUS_DOT11_WFD_DISCOVER_COMPLETE