- Timestamp:
- Oct 17, 2001, 12:22:37 PM (24 years ago)
- Location:
- trunk/src/ws2_32
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/ws2_32/socket.cpp
r6995 r7088 1 /* $Id: socket.cpp,v 1.1 0 2001-10-10 19:08:08 phallerExp $ */1 /* $Id: socket.cpp,v 1.11 2001-10-17 10:22:37 sandervl Exp $ */ 2 2 /* 3 3 * based on Windows Sockets 1.1 specs … … 105 105 return ( socket (af, type, protocol) ); 106 106 } 107 //****************************************************************************** 108 //****************************************************************************** 109 ODINFUNCTION3(int, WSAEnumProtocolsA, LPINT, lpiProtocols, 110 LPWSAPROTOCOL_INFOA, lpProtocolBuffer, 111 LPDWORD, lpdwBufferLength) 112 { 113 dprintf(("NOT IMPLEMENTED")); 114 return 0; 115 } 116 //****************************************************************************** 117 //****************************************************************************** 118 ODINFUNCTION3(int, WSAEnumProtocolsW, LPINT, lpiProtocols, 119 LPWSAPROTOCOL_INFOW, lpProtocolBuffer, 120 LPDWORD, lpdwBufferLength) 121 { 122 dprintf(("NOT IMPLEMENTED")); 123 return 0; 124 } 125 //****************************************************************************** 126 //****************************************************************************** -
trunk/src/ws2_32/ws2_32.def
r7023 r7088 1 ; $Id: ws2_32.def,v 1.1 0 2001-10-11 19:24:38sandervl Exp $1 ; $Id: ws2_32.def,v 1.11 2001-10-17 10:22:37 sandervl Exp $ 2 2 3 3 ;Created by BLAST for IBM's compiler … … 86 86 ; WSAEnumNameSpaceProvidersW @35 87 87 WSAEnumNetworkEvents @36 88 ; WSAEnumProtocolsA@3789 ; WSAEnumProtocolsW@3888 WSAEnumProtocolsA = _WSAEnumProtocolsA@12 @37 89 WSAEnumProtocolsW = _WSAEnumProtocolsW@12 @38 90 90 WSAEventSelect @39 91 91 ; WSAGetOverlappedResult @40
Note:
See TracChangeset
for help on using the changeset viewer.