SetCommConfig function kernel32

int SetCommConfig(
  1. int hCommDev,
  2. Pointer<COMMCONFIG> lpCC,
  3. int dwSize
)

Sets the current configuration of a communications device.

BOOL SetCommConfig(
  HANDLE       hCommDev,
  LPCOMMCONFIG lpCC,
  DWORD        dwSize
);

Implementation

int SetCommConfig(int hCommDev, Pointer<COMMCONFIG> lpCC, int dwSize) =>
    _SetCommConfig(hCommDev, lpCC, dwSize);