WlanGetNetworkBssList function wlanapi
int
WlanGetNetworkBssList(
- HANDLE hClientHandle,
- Pointer<
GUID> pInterfaceGuid, - Pointer<
DOT11_SSID> ? pDot11Ssid, - DOT11_BSS_TYPE dot11BssType,
- bool bSecurityEnabled,
- Pointer<
Pointer< ppWlanBssList,WLAN_BSS_LIST> >
Retrieves a list of the basic service set (BSS) entries of the wireless network or networks on a given wireless LAN interface.
To learn more, see learn.microsoft.com/windows/win32/api/wlanapi/nf-wlanapi-wlangetnetworkbsslist.
Implementation
@pragma('vm:prefer-inline')
int WlanGetNetworkBssList(
HANDLE hClientHandle,
Pointer<GUID> pInterfaceGuid,
Pointer<DOT11_SSID>? pDot11Ssid,
DOT11_BSS_TYPE dot11BssType,
bool bSecurityEnabled,
Pointer<Pointer<WLAN_BSS_LIST>> ppWlanBssList,
) => _WlanGetNetworkBssList(
hClientHandle,
pInterfaceGuid,
pDot11Ssid ?? nullptr,
dot11BssType,
bSecurityEnabled ? TRUE : FALSE,
nullptr,
ppWlanBssList,
);