Changeset 28535 in vbox for trunk/src/VBox/Runtime/r3
- Timestamp:
- Apr 20, 2010 8:39:10 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r3/socket.cpp
r27791 r28535 263 263 *ppSocket = pThis; 264 264 return VINF_SUCCESS; 265 } 266 267 268 RTDECL(int) RTSocketFromNative(PRTSOCKET phSocket, RTHCINTPTR uNative) 269 { 270 AssertReturn(uNative != NIL_RTSOCKETNATIVE, VERR_INVALID_PARAMETER); 271 #ifndef RT_OS_WINDOWS 272 AssertReturn(uNative >= 0, VERR_INVALID_PARAMETER); 273 #endif 274 AssertPtrReturn(phSocket, VERR_INVALID_POINTER); 275 return rtSocketCreateForNative(phSocket, uNative); 265 276 } 266 277
Note:
See TracChangeset
for help on using the changeset viewer.