WlanGetProfileList function wlanapi

int WlanGetProfileList(
  1. int hClientHandle,
  2. Pointer<GUID> pInterfaceGuid,
  3. Pointer<NativeType> pReserved,
  4. Pointer<Pointer<WLAN_PROFILE_INFO_LIST>> ppProfileList
)

The WlanGetProfileList function retrieves the list of profiles in preference order.

DWORD WlanGetProfileList(
  HANDLE                  hClientHandle,
  const GUID              *pInterfaceGuid,
  PVOID                   pReserved,
  PWLAN_PROFILE_INFO_LIST *ppProfileList
);

Implementation

int WlanGetProfileList(
        int hClientHandle,
        Pointer<GUID> pInterfaceGuid,
        Pointer pReserved,
        Pointer<Pointer<WLAN_PROFILE_INFO_LIST>> ppProfileList) =>
    _WlanGetProfileList(
        hClientHandle, pInterfaceGuid, pReserved, ppProfileList);