Changeset 27509 in vbox for trunk/src/VBox/Runtime/include
- Timestamp:
- Mar 18, 2010 11:47:16 PM (15 years ago)
- Location:
- trunk/src/VBox/Runtime/include/internal
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/include/internal/pipe.h
r27432 r27509 33 33 34 34 #include <iprt/pipe.h> 35 /* Requires Windows.h on windows. */ 35 36 36 37 RT_C_DECLS_BEGIN 37 38 38 39 #ifdef RT_OS_WINDOWS 39 int rtPipePollGetHandle s(RTPIPE hPipe, uint32_t fEvents, PHANDLE ph1, PHANDLE ph2);40 uint32_t rtPipePollStart(RTPIPE hPipe, RTPOLLSET hPollSet, uint32_t fEvents, bool f NoWait);41 uint32_t rtPipePollDone(RTPIPE hPipe, uint32_t fEvents );40 int rtPipePollGetHandle(RTPIPE hPipe, uint32_t fEvents, PHANDLE ph); 41 uint32_t rtPipePollStart(RTPIPE hPipe, RTPOLLSET hPollSet, uint32_t fEvents, bool fFinalEntry, bool fNoWait); 42 uint32_t rtPipePollDone(RTPIPE hPipe, uint32_t fEvents, bool fFinalEntry); 42 43 #endif /* RT_OS_WINDOWS */ 43 44 -
trunk/src/VBox/Runtime/include/internal/socket.h
r27503 r27509 34 34 #include <iprt/cdefs.h> 35 35 #include <iprt/types.h> 36 /* Currently requires a bunch of socket headers. */ 36 37 37 38 38 39 RT_C_DECLS_BEGIN 39 40 41 #ifndef IPRT_INTERNAL_SOCKET_POLLING_ONLY 40 42 int rtSocketResolverError(void); 41 43 int rtSocketCreateForNative(RTSOCKETINT **ppSocket, 42 # ifdef RT_OS_WINDOWS44 # ifdef RT_OS_WINDOWS 43 45 SOCKET hNative 44 # else46 # else 45 47 int hNative 46 # endif48 # endif 47 49 ); 48 50 int rtSocketCreate(PRTSOCKET phSocket, int iDomain, int iType, int iProtocol); … … 52 54 int rtSocketConnect(RTSOCKET hSocket, const struct sockaddr *pAddr, int cbAddr); 53 55 int rtSocketSetOpt(RTSOCKET hSocket, int iLevel, int iOption, void const *pvValue, int cbValue); 56 #endif /* IPRT_INTERNAL_SOCKET_POLLING_ONLY */ 57 58 #ifdef RT_OS_WINDOWS 59 int rtSocketPollGetHandle(RTSOCKET hSocket, uint32_t fEvents, PHANDLE ph); 60 uint32_t rtSocketPollStart(RTSOCKET hSocket, RTPOLLSET hPollSet, uint32_t fEvents, bool fFinalEntry, bool fNoWait); 61 uint32_t rtSocketPollDone(RTSOCKET hSocket, uint32_t fEvents, bool fFinalEntry); 62 #endif /* RT_OS_WINDOWS */ 54 63 55 64 RT_C_DECLS_END
Note:
See TracChangeset
for help on using the changeset viewer.