Changeset 562 for trunk/src


Ignore:
Timestamp:
Aug 19, 1999, 1:32:03 AM (26 years ago)
Author:
phaller
Message:

Add: dozens of new stubs

Location:
trunk/src/wnetap32
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wnetap32/wnetap32.cpp

    r561 r562  
    1 /* $Id: wnetap32.cpp,v 1.4 1999-08-18 23:27:25 phaller Exp $ */
     1/* $Id: wnetap32.cpp,v 1.5 1999-08-18 23:32:02 phaller Exp $ */
    22
    33/*
     
    42874287}
    42884288
     4289
     4290/*****************************************************************************
     4291 * Name      : NET_API_STATUS NetStatisticsGet
     4292 * Purpose   : retrieves operating statistics for a service
     4293 * Parameters: LPWSTR  lpServerName
     4294 *             LPWSTR  lpService
     4295 *             DWORD   dwLevel
     4296 *             DWORD   dwOptions
     4297 *             LPBYTE* bufptr
     4298 * Variables :
     4299 * Result    :
     4300 * Remark    :
     4301 * Status    : UNTESTED STUB
     4302 *
     4303 * Author    : Patrick Haller [Thu, 1999/08/18 00:15]
     4304 *****************************************************************************/
     4305
     4306ODINFUNCTION5(NET_API_STATUS,OS2NetStatisticsGet,LPWSTR,  lpServerName,
     4307                                                 LPWSTR,  lpService,
     4308                                                 DWORD,   dwLevel,
     4309                                                 DWORD,   dwOptions,
     4310                                                 LPBYTE*, bufptr)
     4311{
     4312  dprintf(("NETAPI32: NetUseStatisticsGet not implemented\n"));
     4313
     4314  return (NERR_BASE);
     4315}
     4316
  • trunk/src/wnetap32/wnetap32.def

    r561 r562  
    1 ; $Id: wnetap32.def,v 1.3 1999-08-18 23:27:26 phaller Exp $
     1; $Id: wnetap32.def,v 1.4 1999-08-18 23:32:03 phaller Exp $
    22
    33LIBRARY WNETAP32 INITINSTANCE
     
    185185  NetShareGetInfo              = _OS2NetShareGetInfo@16                @178    ;stubonly
    186186  NetShareSetInfo              = _OS2NetShareSetInfo@20                @179    ;stubonly
    187 ;  NetStatisticsGet2           = _OS2NetStatisticsGet2@20              @    ;stubonly NOT in DLL but in SDK doc
     187  NetStatisticsGet             = _OS2NetStatisticsGet@20               @180    ;stubonly
    188188  NetUseAdd                    = _OS2NetUseAdd@16                      @181
    189189  NetUseDel                    = _OS2NetUseDel@12                      @182
Note: See TracChangeset for help on using the changeset viewer.