Changeset 6201 for trunk/src/ws2_32


Ignore:
Timestamp:
Jul 7, 2001, 4:29:41 PM (24 years ago)
Author:
achimha
Message:

implemented WSAEventSelect

Location:
trunk/src/ws2_32
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/ws2_32/socket.cpp

    r6200 r6201  
    1 /* $Id */
     1/* $Id: socket.cpp,v 1.9 2001-07-07 14:29:22 achimha Exp $ */
    22/*
    33 * based on Windows Sockets 1.1 specs
     
    8787   return ( socket (af, type, protocol) );
    8888}
    89 
    90 /***********************************************************************
    91  *              WSAEnumNetworkEvents
    92  */
    93 int WINAPI WSAEnumNetworkEvents(SOCKET s, WSAEVENT hEvent, LPWSANETWORKEVENTS lpEvent)
    94 {
    95     dprintf(("WSAEnumNetworkEvents %x %x %x NOT IMPLEMENTED", s, hEvent, lpEvent));
    96     SetLastError(WSAEINVAL);
    97     return SOCKET_ERROR;
    98 }
    99 
  • trunk/src/ws2_32/ws2_32.def

    r6195 r6201  
    1 ; $Id: ws2_32.def,v 1.6 2001-07-07 10:43:42 achimha Exp $
     1; $Id: ws2_32.def,v 1.7 2001-07-07 14:29:22 achimha Exp $
    22
    33;Created by BLAST for IBM's compiler
     
    4747  socket                                           = WSOCK32.23
    4848  WSAEventSelect                                   = WSOCK32.3001
     49  WSAEnumNetworkEvents                             = WSOCK32.3002
    4950         
    5051EXPORTS
     
    8687; WSAEnumNameSpaceProvidersA                       @34
    8788; WSAEnumNameSpaceProvidersW                       @35
    88   WSAEnumNetworkEvents = _WSAEnumNetworkEvents@12  @36
     89  WSAEnumNetworkEvents                             @36
    8990; WSAEnumProtocolsA                                @37
    9091; WSAEnumProtocolsW                                @38
Note: See TracChangeset for help on using the changeset viewer.