TransmitCommChar function kernel32
Transmits a specified character ahead of any pending data in the output buffer of the specified communications device.
BOOL TransmitCommChar(
HANDLE hFile,
char cChar
);
Implementation
int TransmitCommChar(int hFile, int cChar) => _TransmitCommChar(hFile, cChar);