Changeset 86412 in vbox for trunk/include
- Timestamp:
- Oct 2, 2020 11:39:26 AM (5 years ago)
- svn:sync-xref-src-repo-rev:
- 140713
- Location:
- trunk/include/iprt
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/mangling.h
r86300 r86412 1740 1740 # define RTPathUserHome RT_MANGLER(RTPathUserHome) 1741 1741 # define RTPipeClose RT_MANGLER(RTPipeClose) 1742 # define RTPipeCloseEx RT_MANGLER(RTPipeCloseEx) 1742 1743 # define RTPipeCreate RT_MANGLER(RTPipeCreate) 1743 1744 # define RTPipeFlush RT_MANGLER(RTPipeFlush) -
trunk/include/iprt/pipe.h
r82968 r86412 70 70 71 71 /** 72 * Closes one end of a pipe created by RTPipeCreate, extended version. 73 * 74 * @returns IPRT status code. 75 * @param hPipe The pipe end to close. 76 * @param fLeaveOpen Wheter to leave the underlying native handle open 77 * (for RTPipeClose() this is @c false). 78 */ 79 RTDECL(int) RTPipeCloseEx(RTPIPE hPipe, bool fLeaveOpen); 80 81 /** 72 82 * Creates an IPRT pipe handle from a native one. 73 83 * … … 91 101 /** Make sure the pipe is inheritable if set and not inheritable when clear. */ 92 102 #define RTPIPE_N_INHERIT RT_BIT(2) 93 /** Mask of valid flags . */103 /** Mask of valid flags for . */ 94 104 #define RTPIPE_N_VALID_MASK UINT32_C(0x00000007) 105 /** RTPipeFromNative: Leave the native pipe handle open on close. */ 106 #define RTPIPE_N_LEAVE_OPEN RT_BIT(3) 107 /** Mask of valid flags for RTPipeFromNative(). */ 108 #define RTPIPE_N_VALID_MASK_FN UINT32_C(0x0000000f) 95 109 /** @} */ 96 110
Note:
See TracChangeset
for help on using the changeset viewer.