Changeset 27497 in vbox for trunk/include/iprt
- Timestamp:
- Mar 18, 2010 6:59:08 PM (15 years ago)
- Location:
- trunk/include/iprt
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/err.h
r27431 r27497 611 611 /** Status code, typically given as a parameter, that isn't supposed to be used. */ 612 612 #define VERR_IGNORED (-91) 613 /** Concurrent access to the object is not allowed. */ 614 #define VERR_CONCURRENT_ACCESS (-92) 613 615 /** @} */ 614 616 -
trunk/include/iprt/tcp.h
r26915 r27497 195 195 196 196 /** 197 * Send data froma socket.197 * Send data to a socket. 198 198 * 199 199 * @returns iprt status code. -
trunk/include/iprt/types.h
r26734 r27497 1249 1249 1250 1250 /** Socket handle. */ 1251 typedef intRTSOCKET;1251 typedef R3R0PTRTYPE(struct RTSOCKETINT *) RTSOCKET; 1252 1252 /** Pointer to socket handle. */ 1253 typedef RTSOCKET *PRTSOCKET;1253 typedef RTSOCKET *PRTSOCKET; 1254 1254 /** Nil socket handle. */ 1255 #define NIL_RTSOCKET ( ~(RTSOCKET)0)1255 #define NIL_RTSOCKET ((RTSOCKET)0) 1256 1256 1257 1257 /** Thread handle.*/
Note:
See TracChangeset
for help on using the changeset viewer.