Changeset 44469 in vbox for trunk/src/VBox/Runtime/include/internal/pipe.h
- Timestamp:
- Jan 30, 2013 3:37:55 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/include/internal/pipe.h
r32131 r44469 33 33 RT_C_DECLS_BEGIN 34 34 35 /** 36 * Internal RTPollSetAdd helper that returns the handle that should be added to 37 * the pollset. 38 * 39 * @returns Valid handle on success, INVALID_HANDLE_VALUE on failure. 40 * @param hPipe The pipe handle. 41 * @param fEvents The events we're polling for. 42 * @param phNative Where to put the primary handle. 43 */ 44 int rtPipePollGetHandle(RTPIPE hPipe, uint32_t fEvents, PRTHCINTPTR phNative); 45 35 46 #ifdef RT_OS_WINDOWS 36 int rtPipePollGetHandle(RTPIPE hPipe, uint32_t fEvents, PHANDLE ph);37 47 uint32_t rtPipePollStart(RTPIPE hPipe, RTPOLLSET hPollSet, uint32_t fEvents, bool fFinalEntry, bool fNoWait); 38 48 uint32_t rtPipePollDone(RTPIPE hPipe, uint32_t fEvents, bool fFinalEntry, bool fHarvestEvents);
Note:
See TracChangeset
for help on using the changeset viewer.