WlanSetInterface function wlanapi

int WlanSetInterface(
  1. HANDLE hClientHandle,
  2. Pointer<GUID> pInterfaceGuid,
  3. WLAN_INTF_OPCODE opCode,
  4. int dwDataSize,
  5. Pointer<NativeType> pData,
)

Sets user-configurable parameters.

To learn more, see learn.microsoft.com/windows/win32/api/wlanapi/nf-wlanapi-wlansetinterface.

Implementation

@pragma('vm:prefer-inline')
int WlanSetInterface(
  HANDLE hClientHandle,
  Pointer<GUID> pInterfaceGuid,
  WLAN_INTF_OPCODE opCode,
  int dwDataSize,
  Pointer pData,
) => _WlanSetInterface(
  hClientHandle,
  pInterfaceGuid,
  opCode,
  dwDataSize,
  pData,
  nullptr,
);