Changeset 57643 in vbox for trunk/include
- Timestamp:
- Sep 7, 2015 1:47:08 PM (10 years ago)
- svn:sync-xref-src-repo-rev:
- 102533
- Location:
- trunk/include/iprt
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/mangling.h
r57613 r57643 1105 1105 # define RTPipeFlush RT_MANGLER(RTPipeFlush) 1106 1106 # define RTPipeFromNative RT_MANGLER(RTPipeFromNative) 1107 # define RTPipeQueryInfo RT_MANGLER(RTPipeQueryInfo) 1107 1108 # define RTPipeQueryReadable RT_MANGLER(RTPipeQueryReadable) 1108 1109 # define RTPipeRead RT_MANGLER(RTPipeRead) … … 1935 1936 # define RTVfsIoStrmFlush RT_MANGLER(RTVfsIoStrmFlush) 1936 1937 # define RTVfsIoStrmFromRTFile RT_MANGLER(RTVfsIoStrmFromRTFile) 1938 # define RTVfsIoStrmFromRTPipe RT_MANGLER(RTVfsIoStrmFromRTPipe) 1937 1939 # define RTVfsIoStrmFromStdHandle RT_MANGLER(RTVfsIoStrmFromStdHandle) 1938 1940 # define RTVfsIoStrmIsAtEnd RT_MANGLER(RTVfsIoStrmIsAtEnd) -
trunk/include/iprt/pipe.h
r56291 r57643 29 29 #include <iprt/cdefs.h> 30 30 #include <iprt/types.h> 31 #include <iprt/fs.h> 31 32 32 33 RT_C_DECLS_BEGIN … … 219 220 RTDECL(int) RTPipeQueryReadable(RTPIPE hPipe, size_t *pcbReadable); 220 221 222 /** 223 * Query information about a pipe (mainly a VFS I/O stream formality). 224 * 225 * The only thing we guarentee to be returned is RTFSOBJINFO::Attr.fMode being 226 * set to FIFO and will reflect the read/write end in the RTFS_DOS_READONLY, 227 * RTFS_UNIX_IRUSR and RTFS_UNIX_IWUSR bits. 228 * 229 * Some implementations sometimes provide the pipe buffer size via 230 * RTFSOBJINFO::cbAllocated. 231 * 232 * Some implementations sometimes provide the available read data or available 233 * write space via RTFSOBJINFO::cbObject. 234 * 235 * Some implementations sometimes provide valid device and/or inode numbers. 236 * 237 * @returns iprt status code. 238 * 239 * @param hPipe The IPRT read pipe handle. 240 * @param pObjInfo Object information structure to be filled on successful 241 * return. 242 * @param enmAddAttr Which set of additional attributes to request. Use 243 * RTFSOBJATTRADD_NOTHING if this doesn't matter. 244 */ 245 RTDECL(int) RTPipeQueryInfo(RTPIPE hPipe, PRTFSOBJINFO pObjInfo, RTFSOBJATTRADD enmAddAttr); 246 221 247 /** @} */ 222 248 -
trunk/include/iprt/vfs.h
r56291 r57643 440 440 441 441 /** 442 * Create a VFS I/O stream handle from a standard IPRT file handle (RTFILE).442 * Creates a VFS I/O stream handle from a standard IPRT file handle (RTFILE). 443 443 * 444 444 * @returns IPRT status code. … … 451 451 */ 452 452 RTDECL(int) RTVfsIoStrmFromRTFile(RTFILE hFile, uint64_t fOpen, bool fLeaveOpen, PRTVFSIOSTREAM phVfsIos); 453 454 /** 455 * Creates a VFS I/O stream handle from a standard IPRT pipe handle (RTPIPE). 456 * 457 * @returns IPRT status code. 458 * @param hPipe The standard IPRT pipe handle. 459 * @param fLeaveOpen Whether to leave the handle open when the VFS file 460 * is released, or to close it (@c false). 461 * @param phVfsIos Where to return the VFS I/O stream handle. 462 */ 463 RTDECL(int) RTVfsIoStrmFromRTPipe(RTPIPE hPipe, bool fLeaveOpen, PRTVFSIOSTREAM phVfsIos); 453 464 454 465 /**
Note:
See TracChangeset
for help on using the changeset viewer.