WlanGetSupportedDeviceServices function wlanapi

int WlanGetSupportedDeviceServices(
  1. int hClientHandle,
  2. Pointer<GUID> pInterfaceGuid,
  3. Pointer<Pointer<WLAN_DEVICE_SERVICE_GUID_LIST>> ppDevSvcGuidList
)

Retrieves a list of the supported device services on a given wireless LAN interface.

DWORD WlanGetSupportedDeviceServices(
  HANDLE                         hClientHandle,
  const GUID                     *pInterfaceGuid,
  PWLAN_DEVICE_SERVICE_GUID_LIST *ppDevSvcGuidList
);

Implementation

int WlanGetSupportedDeviceServices(
        int hClientHandle,
        Pointer<GUID> pInterfaceGuid,
        Pointer<Pointer<WLAN_DEVICE_SERVICE_GUID_LIST>> ppDevSvcGuidList) =>
    _WlanGetSupportedDeviceServices(
        hClientHandle, pInterfaceGuid, ppDevSvcGuidList);