// wlanihvtypes.h
typedef struct _DOT11EXT_IHV_SSID_LIST {
ULONG ulCount;
#if ...
DOT11_SSID *SSIDs[];
#else
DOT11_SSID SSIDs[1];
#endif
} DOT11EXT_IHV_SSID_LIST, *PDOT11EXT_IHV_SSID_LIST;
View the official Windows Driver Kit DDI reference
No description available.
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 DOT11EXT_IHV_SSID_LIST structure specifies a list of 802.11 service set identifiers (SSIDs).
SSIDs[*]
The number of SSIDs in the list.
SSIDs[1]
An SSID of type DOT11_SSID. This is the first SSID in the list.
An SSID is a string that identifies a set of interconnected basic service sets (BSSs).