Changeset 7088 for trunk/src


Ignore:
Timestamp:
Oct 17, 2001, 12:22:37 PM (24 years ago)
Author:
sandervl
Message:

WSAEnumProtocolsA/W stubs added

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.10 2001-10-10 19:08:08 phaller Exp $ */
     1/* $Id: socket.cpp,v 1.11 2001-10-17 10:22:37 sandervl Exp $ */
    22/*
    33 * based on Windows Sockets 1.1 specs
     
    105105   return ( socket (af, type, protocol) );
    106106}
     107//******************************************************************************
     108//******************************************************************************
     109ODINFUNCTION3(int, WSAEnumProtocolsA, LPINT, lpiProtocols,
     110                                      LPWSAPROTOCOL_INFOA, lpProtocolBuffer,
     111                                      LPDWORD, lpdwBufferLength)
     112{
     113    dprintf(("NOT IMPLEMENTED"));
     114    return 0;
     115}
     116//******************************************************************************
     117//******************************************************************************
     118ODINFUNCTION3(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.10 2001-10-11 19:24:38 sandervl Exp $
     1; $Id: ws2_32.def,v 1.11 2001-10-17 10:22:37 sandervl Exp $
    22
    33;Created by BLAST for IBM's compiler
     
    8686; WSAEnumNameSpaceProvidersW                       @35
    8787  WSAEnumNetworkEvents                             @36
    88 ; WSAEnumProtocolsA                                @37
    89 ; WSAEnumProtocolsW                                @38
     88  WSAEnumProtocolsA = _WSAEnumProtocolsA@12        @37
     89  WSAEnumProtocolsW = _WSAEnumProtocolsW@12        @38
    9090  WSAEventSelect                                   @39
    9191; WSAGetOverlappedResult                           @40
Note: See TracChangeset for help on using the changeset viewer.