WlanSetProfileCustomUserData function wlanapi

int WlanSetProfileCustomUserData(
  1. int hClientHandle,
  2. Pointer<GUID> pInterfaceGuid,
  3. Pointer<Utf16> strProfileName,
  4. int dwDataSize,
  5. Pointer<Uint8> pData,
  6. Pointer<NativeType> pReserved
)

The WlanSetProfileCustomUserData function sets the custom user data associated with a profile.

DWORD WlanSetProfileCustomUserData(
  HANDLE      hClientHandle,
  const GUID  *pInterfaceGuid,
  LPCWSTR     strProfileName,
  DWORD       dwDataSize,
  const PBYTE pData,
  PVOID       pReserved
);

Implementation

int WlanSetProfileCustomUserData(
        int hClientHandle,
        Pointer<GUID> pInterfaceGuid,
        Pointer<Utf16> strProfileName,
        int dwDataSize,
        Pointer<Uint8> pData,
        Pointer pReserved) =>
    _WlanSetProfileCustomUserData(hClientHandle, pInterfaceGuid, strProfileName,
        dwDataSize, pData, pReserved);