// windot11.h
typedef struct _DOT11_PEER_INFO_LIST {
NDIS_OBJECT_HEADER Header;
ULONG uNumOfEntries;
ULONG uTotalNumOfEntries;
DOT11_PEER_INFO PeerInfo[1];
} DOT11_PEER_INFO_LIST, *PDOT11_PEER_INFO_LIST;
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_PEER_INFO_LIST structure specifies a list of DOT11_PEER_INFO structures that specify information about all peer stations within an independent basic service set (IBSS) network.
Note IBSS (Ad hoc) and SoftAP are deprecated. Starting with Windows 8.1 and Windows Server 2012 R2, use Wi-Fi Direct.
HeaderThe type, revision, and size of the DOT11_PEER_INFO_LIST structure. This member is formatted as an NDIS_OBJECT_HEADER structure.
The miniport driver must set the members of Header to the following values:
This member must be set to NDIS_OBJECT_TYPE_DEFAULT.
This member must be set to DOT11_PEER_INFO_LIST_REVISION_1.
This member must be set to sizeof(DOT11_PEER_INFO_LIST).
For more information about these members, see NDIS_OBJECT_HEADER.
uNumOfEntriesThe number of entries in the PeerInfo array.
uTotalNumOfEntriesThe maximum number of entries that the PeerInfo array can contain.
PeerInfoAn array that specifies the list of DOT11_PEER_INFO structures that specify information on all peer stations within an IBSS network. Each station is represented by a DOT11_PEER_INFO structure.
typedef struct _DOT11_PEER_INFO_LIST {
NDIS_OBJECT_HEADER Header;
ULONG uNumOfEntries;
ULONG uTotalNumOfEntries;
DOT11_PEER_INFO PeerInfo[1];
} DOT11_PEER_INFO_LIST, *PDOT11_PEER_INFO_LIST;
This structure is used with OID_DOT11_ENUM_PEER_INFO.