Changeset 8051 for trunk/src


Ignore:
Timestamp:
Mar 8, 2002, 12:36:11 PM (23 years ago)
Author:
sandervl
Message:

added fake version of WSAEnumProtocol()

Location:
trunk/src/ws2_32
Files:
1 added
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/ws2_32/makefile

    r7433 r8051  
    1 # $Id: makefile,v 1.5 2001-11-22 20:50:52 bird Exp $
     1# $Id: makefile,v 1.6 2002-03-08 11:36:11 sandervl Exp $
    22
    33#
     
    2626$(OBJDIR)\initterm.obj \
    2727$(OBJDIR)\socket.obj \
     28$(OBJDIR)\protocol.obj \
    2829$(OBJDIR)\socketodin.obj \
    2930$(OBJDIR)\ioctl.obj \
  • trunk/src/ws2_32/socket.cpp

    r7088 r8051  
    1 /* $Id: socket.cpp,v 1.11 2001-10-17 10:22:37 sandervl Exp $ */
     1/* $Id: socket.cpp,v 1.12 2002-03-08 11:36:11 sandervl Exp $ */
    22/*
    33 * based on Windows Sockets 1.1 specs
     
    107107//******************************************************************************
    108108//******************************************************************************
    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 //******************************************************************************
Note: See TracChangeset for help on using the changeset viewer.