Changeset 39
- Timestamp:
- 10/18/02 17:47:07 (6 years ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
pa_proposals/trunk/005-BlockingReadWriteInterface.html
r4 r39 18 18 <P><A href="index.html">Enhancement Proposals Index</A>, 19 19 <A href="http://www.portaudio.com/">PortAudio Home Page</A></P> 20 <P>Updated: July 23, 2002 </P>20 <P>Updated: October 19, 2002 </P> 21 21 22 22 <H4>Status</H4> 23 23 24 24 <P> 25 This proposal is sufficiently well defined to be implemented. 25 This proposal is sufficiently well defined to be implemented. This proposal is implemented in the v19-devel infrastructure, but not yet in any of the host api implementations. 26 26 </P> 27 27 … … 78 78 79 79 <P> 80 Pa_ReadStream() returns <I>paInputOverflow </I> if input data was discarded by PortAudio after the previous call and before this call. Pa_WriteStream() returns <I>paOutputUnderflow</I> if output data was inserted after the previous call and before this call. The mode flag <I>paNeverDropInput</I> is ignored because Pa_ReadStream() and Pa_WriteStream() are not synchronized.80 Pa_ReadStream() returns <I>paInputOverflowed</I> if input data was discarded by PortAudio after the previous call and before this call. Pa_WriteStream() returns <I>paOutputUnderflowed</I> if output data was inserted after the previous call and before this call. The mode flag <I>paNeverDropInput</I> is ignored because Pa_ReadStream() and Pa_WriteStream() are not synchronized. 81 81 </P> 82 82 … … 86 86 87 87 <PRE> 88 long Pa_GetStreamWriteAvailable( PaStream* stream );88 signed long Pa_GetStreamWriteAvailable( PaStream* stream ); 89 89 90 long Pa_GetStreamReadAvailable( PaStream* stream );90 signed long Pa_GetStreamReadAvailable( PaStream* stream ); 91 91 </PRE> 92 92
