WlanEnumInterfaces function wlanapi

int WlanEnumInterfaces(
  1. int hClientHandle,
  2. Pointer<NativeType> pReserved,
  3. Pointer<Pointer<WLAN_INTERFACE_INFO_LIST>> ppInterfaceList
)

The WlanEnumInterfaces function enumerates all of the wireless LAN interfaces currently enabled on the local computer.

DWORD WlanEnumInterfaces(
  HANDLE                    hClientHandle,
  PVOID                     pReserved,
  PWLAN_INTERFACE_INFO_LIST *ppInterfaceList
);

Implementation

int WlanEnumInterfaces(int hClientHandle, Pointer pReserved,
        Pointer<Pointer<WLAN_INTERFACE_INFO_LIST>> ppInterfaceList) =>
    _WlanEnumInterfaces(hClientHandle, pReserved, ppInterfaceList);