Changeset 39690 in vbox for trunk/include/iprt/pipe.h
- Timestamp:
- Dec 30, 2011 1:06:50 PM (13 years ago)
- svn:sync-xref-src-repo-rev:
- 75528
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/pipe.h
r33973 r39690 206 206 RTDECL(int) RTPipeSelectOne(RTPIPE hPipe, RTMSINTERVAL cMillies); 207 207 208 /** 209 * Queries the number of bytes immediately available for reading. 210 * 211 * @returns IPRT status code. 212 * @retval VERR_NOT_SUPPORTED if not supported by the OS. The caller shall 213 * handle this case. 214 * 215 * @param hPipe The IPRT read pipe handle. 216 * @param pcbReadable Where to return the number of bytes that is ready 217 * to be read. 218 */ 219 RTDECL(int) RTPipeQueryReadable(RTPIPE hPipe, size_t *pcbReadable); 220 208 221 /** @} */ 209 222
Note:
See TracChangeset
for help on using the changeset viewer.