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

WSAEnumProtocolsA/W stubs added

File:
1 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//******************************************************************************
Note: See TracChangeset for help on using the changeset viewer.