WlanDeleteProfile function wlanapi

int WlanDeleteProfile(
  1. int hClientHandle,
  2. Pointer<GUID> pInterfaceGuid,
  3. Pointer<Utf16> strProfileName,
  4. Pointer<NativeType> pReserved
)

The WlanDeleteProfile function deletes a wireless profile for a wireless interface on the local computer.

DWORD WlanDeleteProfile(
  HANDLE     hClientHandle,
  const GUID *pInterfaceGuid,
  LPCWSTR    strProfileName,
  PVOID      pReserved
);

Implementation

int WlanDeleteProfile(int hClientHandle, Pointer<GUID> pInterfaceGuid,
        Pointer<Utf16> strProfileName, Pointer pReserved) =>
    _WlanDeleteProfile(
        hClientHandle, pInterfaceGuid, strProfileName, pReserved);