WlanGetProfileCustomUserData function wlanapi

int WlanGetProfileCustomUserData(
  1. int hClientHandle,
  2. Pointer<GUID> pInterfaceGuid,
  3. Pointer<Utf16> strProfileName,
  4. Pointer<NativeType> pReserved,
  5. Pointer<Uint32> pdwDataSize,
  6. Pointer<Pointer<Uint8>> ppData
)

The WlanGetProfileCustomUserData function gets the custom user data associated with a wireless profile.

DWORD WlanGetProfileCustomUserData(
  HANDLE     hClientHandle,
  const GUID *pInterfaceGuid,
  LPCWSTR    strProfileName,
  PVOID      pReserved,
  DWORD      *pdwDataSize,
  PBYTE      *ppData
);

Implementation

int WlanGetProfileCustomUserData(
        int hClientHandle,
        Pointer<GUID> pInterfaceGuid,
        Pointer<Utf16> strProfileName,
        Pointer pReserved,
        Pointer<Uint32> pdwDataSize,
        Pointer<Pointer<Uint8>> ppData) =>
    _WlanGetProfileCustomUserData(hClientHandle, pInterfaceGuid, strProfileName,
        pReserved, pdwDataSize, ppData);