GetCommConfig function kernel32

int GetCommConfig(
  1. int hCommDev,
  2. Pointer<COMMCONFIG> lpCC,
  3. Pointer<Uint32> lpdwSize
)

Retrieves the current configuration of a communications device.

BOOL GetCommConfig(
  HANDLE       hCommDev,
  LPCOMMCONFIG lpCC,
  LPDWORD      lpdwSize
);

Implementation

int GetCommConfig(
        int hCommDev, Pointer<COMMCONFIG> lpCC, Pointer<Uint32> lpdwSize) =>
    _GetCommConfig(hCommDev, lpCC, lpdwSize);