- Timestamp:
- Jan 11, 2011, 12:12:11 AM (15 years ago)
- Location:
- trunk/src/ws2_32
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/ws2_32/socket.cpp
r21420 r21552 325 325 return 0; 326 326 } 327 328 /*********************************************************************** 329 * WSALookupServiceBeginA (WS2_32.59) 330 */ 331 INT WINAPI WSALookupServiceBeginA( LPWSAQUERYSETA lpqsRestrictions, 332 DWORD dwControlFlags, 333 LPHANDLE lphLookup) 334 { 335 FIXME("(%p 0x%08lx %p) Stub!\n", lpqsRestrictions, dwControlFlags, 336 lphLookup); 337 WSASetLastError(WSA_NOT_ENOUGH_MEMORY); 338 return SOCKET_ERROR; 339 } 340 341 /*********************************************************************** 342 * WSALookupServiceBeginW (WS2_32.60) 343 */ 344 INT WINAPI WSALookupServiceBeginW( LPWSAQUERYSETW lpqsRestrictions, 345 DWORD dwControlFlags, 346 LPHANDLE lphLookup) 347 { 348 FIXME("(%p 0x%08lx %p) Stub!\n", lpqsRestrictions, dwControlFlags, 349 lphLookup); 350 WSASetLastError(WSA_NOT_ENOUGH_MEMORY); 351 return SOCKET_ERROR; 352 } -
trunk/src/ws2_32/ws2_32.def
r21322 r21552 81 81 82 82 ; WSAJoinLeaf @58 83 ; WSALookupServiceBeginA@5984 ; WSALookupServiceBeginW@6083 WSALookupServiceBeginA = _WSALookupServiceBeginA@12 @59 84 WSALookupServiceBeginW = _WSALookupServiceBeginW@12 @60 85 85 ; WSALookupServiceEnd @61 86 86 ; WSALookupServiceNextA @62
Note:
See TracChangeset
for help on using the changeset viewer.