SetDefaultCommConfig function kernel32

int SetDefaultCommConfig(
  1. Pointer<Utf16> lpszName,
  2. Pointer<COMMCONFIG> lpCC,
  3. int dwSize
)

Sets the default configuration for a communications device.

BOOL SetDefaultCommConfigW(
  LPCWSTR      lpszName,
  LPCOMMCONFIG lpCC,
  DWORD        dwSize
);

Implementation

int SetDefaultCommConfig(
        Pointer<Utf16> lpszName, Pointer<COMMCONFIG> lpCC, int dwSize) =>
    _SetDefaultCommConfig(lpszName, lpCC, dwSize);