up vote 0 down vote favorite
share [g+] share [fb]

I was wondering if there was any function along the lines of IsBufferEmpty() to use on a synchronous handle rather than using ReadFile() and waiting for it to return false. I need something to eliminate the delay that ReadFile() takes to try to read data.

link|improve this question
feedback

1 Answer

up vote 0 down vote accepted

Is this for serial port communication?

If so, you can use the ClearCommError() function:

DWORD com_errors = 0;
COMSTAT com_stat;

ClearCommError(serial_port_handle, &com_errors, &com_stat);
/* com_stat.cbInQue now holds the number of characters in the receive buffer */
link|improve this answer
It is for serial port communication. Thanks for the information, I never would've guessed that you could access it by a clear error function. – Schuyler Jun 2 '09 at 15:56
feedback

Your Answer

 
or
required, but never shown