Changeset 44469 in vbox for trunk/src/VBox/Runtime/include
- Timestamp:
- Jan 30, 2013 3:37:55 PM (12 years ago)
- svn:sync-xref-src-repo-rev:
- 83477
- Location:
- trunk/src/VBox/Runtime/include/internal
- Files:
-
- 2 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); -
trunk/src/VBox/Runtime/include/internal/socket.h
r39801 r44469 62 62 #endif /* IPRT_INTERNAL_SOCKET_POLLING_ONLY */ 63 63 64 int rtSocketPollGetHandle(RTSOCKET hSocket, uint32_t fEvents, PRTHCINTPTR phNative); 64 65 #ifdef RT_OS_WINDOWS 65 int rtSocketPollGetHandle(RTSOCKET hSocket, uint32_t fEvents, PHANDLE ph);66 66 uint32_t rtSocketPollStart(RTSOCKET hSocket, RTPOLLSET hPollSet, uint32_t fEvents, bool fFinalEntry, bool fNoWait); 67 67 uint32_t rtSocketPollDone(RTSOCKET hSocket, uint32_t fEvents, bool fFinalEntry, bool fHarvestEvents);
Note:
See TracChangeset
for help on using the changeset viewer.