Home | Info | Community | Development | myReactOS | Contact Us
Definition at line 48 of file circularbuffer.c.
Referenced by SerialInterruptService().
{ TRACE_(SERIAL, "GetNumberOfElementsInCircularBuffer(pBuffer %p)\n", pBuffer); ASSERT(pBuffer); return (pBuffer->WritePosition + pBuffer->Length - pBuffer->ReadPosition) % pBuffer->Length; }