GetCommProperties function kernel32

int GetCommProperties(
  1. int hFile,
  2. Pointer<COMMPROP> lpCommProp
)

Retrieves information about the communications properties for a specified communications device.

BOOL GetCommProperties(
  HANDLE     hFile,
  LPCOMMPROP lpCommProp
);

Implementation

int GetCommProperties(int hFile, Pointer<COMMPROP> lpCommProp) =>
    _GetCommProperties(hFile, lpCommProp);