WlanQueryAutoConfigParameter function wlanapi

int WlanQueryAutoConfigParameter(
  1. int hClientHandle,
  2. int OpCode,
  3. Pointer<NativeType> pReserved,
  4. Pointer<Uint32> pdwDataSize,
  5. Pointer<Pointer<NativeType>> ppData,
  6. Pointer<Int32> pWlanOpcodeValueType,
)

The WlanQueryAutoConfigParameter function queries for the parameters of the auto configuration service.

DWORD WlanQueryAutoConfigParameter(
  HANDLE                  hClientHandle,
  WLAN_AUTOCONF_OPCODE    OpCode,
  PVOID                   pReserved,
  PDWORD                  pdwDataSize,
  PVOID                   *ppData,
  PWLAN_OPCODE_VALUE_TYPE pWlanOpcodeValueType
);

Implementation

int WlanQueryAutoConfigParameter(
  int hClientHandle,
  int OpCode,
  Pointer pReserved,
  Pointer<Uint32> pdwDataSize,
  Pointer<Pointer> ppData,
  Pointer<Int32> pWlanOpcodeValueType,
) => _WlanQueryAutoConfigParameter(
  hClientHandle,
  OpCode,
  pReserved,
  pdwDataSize,
  ppData,
  pWlanOpcodeValueType,
);