Changeset 1590 for trunk/src


Ignore:
Timestamp:
Nov 4, 1999, 11:56:26 AM (26 years ago)
Author:
phaller
Message:

Add: undocumented function stubs

Location:
trunk/src/mpr
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/mpr/MPR.CPP

    r1589 r1590  
    1 /* $Id: MPR.CPP,v 1.5 1999-11-04 10:32:35 phaller Exp $ */
     1/* $Id: MPR.CPP,v 1.6 1999-11-04 10:55:30 phaller Exp $ */
    22
    33/*
     
    3232// RestoreConnectionA0
    3333// WNetClearConnections
    34 // WNetConnectionDialog1A
    35 // WNetConnectionDialog1W
    3634// WNetConnectionDialog2
    3735// WNetDirectoryNotifyA
    3836// WNetDirectoryNotifyW
    39 // WNetDisconnectDialog1A
    40 // WNetDisconnectDialog1W
    4137// WNetDisconnectDialog2
    4238// WNetFMXEditPerm         FileManager Extensions ?
     
    5248// WNetGetDirectoryTypeW
    5349// WNetGetHomeDirectoryW   NT specific
    54 // WNetGetNetworkInformationA
    55 // WNetGetNetworkInformationW
    5650// WNetGetPropertyTextA
    5751// WNetGetPropertyTextW
    58 // WNetGetProviderNameA
    59 // WNetGetProviderNameW
    6052// WNetGetSearchDialog
    6153// WNetLogonNotify
     
    438430
    439431/*****************************************************************************
     432 *             The WNetConnectionDialog1 function starts a general browsing
     433 *             dialog box for connecting to network resources.
     434 * Parameters: LPCONNECTDLGSTRUCT lpConnDlgStruct
     435 * Variables :
     436 * Result    : API-Returncode
     437 * Remark    :
     438 * Status    : UNTESTED STUB
     439 *
     440 * Author    : Patrick Haller [Fri, 1998/02/27 11:55]
     441 *****************************************************************************/
     442
     443ODINFUNCTION1(DWORD,               WNetConnectionDialog1A,
     444              LPCONNECTDLGSTRUCTA, lpConnDlgStruct)
     445{
     446  dprintf(("MPR:WNetConnectionDialog1A not implemented.\n"));
     447  return (ERROR_NO_NETWORK);
     448}
     449
     450
     451/*****************************************************************************
     452 *             The WNetConnectionDialog1 function starts a general browsing
     453 *             dialog box for connecting to network resources.
     454 * Parameters: LPCONNECTDLGSTRUCT lpConnDlgStruct
     455 * Variables :
     456 * Result    : API-Returncode
     457 * Remark    :
     458 * Status    : UNTESTED STUB
     459 *
     460 * Author    : Patrick Haller [Fri, 1998/02/27 11:55]
     461 *****************************************************************************/
     462
     463ODINFUNCTION1(DWORD,               WNetConnectionDialog1W,
     464              LPCONNECTDLGSTRUCTW, lpConnDlgStruct)
     465{
     466  dprintf(("MPR:WNetConnectionDialog1W not implemented.\n"));
     467  return (ERROR_NO_NETWORK);
     468}
     469
     470
     471/*****************************************************************************
    440472 *             The WNetDisconnectDialog function starts a general browsing
    441473 *             dialog box for disconnecting from network resources.
     
    455487{
    456488  dprintf(("MPR:WNetDisconnectDialog not implemented.\n"));
     489  return (ERROR_NO_NETWORK);
     490}
     491
     492
     493/*****************************************************************************
     494 *             The WNetDisconnectDialog1 function starts a general browsing
     495 *             dialog box for disconnecting from network resources.
     496 * Parameters: LPDISCDLGSTRUCTA lpDisconnectDlgStruct
     497 * Variables :
     498 * Result    : API-Returncode
     499 * Remark    :
     500 * Status    : UNTESTED STUB
     501 *
     502 * Author    : Patrick Haller [Fri, 1998/02/27 11:55]
     503 *****************************************************************************/
     504
     505ODINFUNCTION1(DWORD,            WNetDisconnectDialog1A,
     506              LPDISCDLGSTRUCTA, lpDisconnectDlgStruct)
     507{
     508  dprintf(("MPR:WNetDisconnectDialog1A not implemented.\n"));
     509  return (ERROR_NO_NETWORK);
     510}
     511
     512
     513/*****************************************************************************
     514 *             The WNetDisconnectDialog1 function starts a general browsing
     515 *             dialog box for disconnecting from network resources.
     516 * Parameters: LPDISCDLGSTRUCTW lpDisconnectDlgStruct
     517 * Variables :
     518 * Result    : API-Returncode
     519 * Remark    :
     520 * Status    : UNTESTED STUB
     521 *
     522 * Author    : Patrick Haller [Fri, 1998/02/27 11:55]
     523 *****************************************************************************/
     524
     525ODINFUNCTION1(DWORD,            WNetDisconnectDialog1W,
     526              LPDISCDLGSTRUCTW, lpDisconnectDlgStruct)
     527{
     528  dprintf(("MPR:WNetDisconnectDialog1W not implemented.\n"));
    457529  return (ERROR_NO_NETWORK);
    458530}
     
    601673}
    602674
     675
     676/*****************************************************************************
     677 *             The WNetGetNetworkInformation function returns extended
     678 *             information about a specific network provider whose name was
     679 *             returned by a previous network enumeration.
     680 * Parameters: LPCSTR lpProvider
     681 *             LPNETINFOSTRUCT lpNetInfoStruct
     682 * Variables :
     683 * Result    : API-Returncode
     684 * Remark    :
     685 * Status    : UNTESTED STUB
     686 *
     687 * Author    : Patrick Haller [Fri, 1998/02/27 11:55]
     688 *****************************************************************************/
     689
     690ODINFUNCTION2(DWORD,           WNetGetNetworkInformationA,
     691              LPCSTR,          lpProvider,
     692              LPNETINFOSTRUCT, lpNetInfoStruct)
     693{
     694  dprintf(("MPR:WNetGetNetworkInformationA not implemented.\n"));
     695  return (ERROR_NO_NETWORK);
     696}
     697
     698
     699/*****************************************************************************
     700 *             The WNetGetNetworkInformation function returns extended
     701 *             information about a specific network provider whose name was
     702 *             returned by a previous network enumeration.
     703 * Parameters: LPCWSTR lpProvider
     704 *             LPNETINFOSTRUCT lpNetInfoStruct
     705 * Variables :
     706 * Result    : API-Returncode
     707 * Remark    :
     708 * Status    : UNTESTED STUB
     709 *
     710 * Author    : Patrick Haller [Fri, 1998/02/27 11:55]
     711 *****************************************************************************/
     712
     713ODINFUNCTION2(DWORD,           WNetGetNetworkInformationW,
     714              LPCWSTR,         lpProvider,
     715              LPNETINFOSTRUCT, lpNetInfoStruct)
     716{
     717  dprintf(("MPR:WNetGetNetworkInformationW not implemented.\n"));
     718  return (ERROR_NO_NETWORK);
     719}
    603720
    604721
     
    772889
    773890/*****************************************************************************
     891 *             The WNetGetProviderName function obtains the provider name for
     892 *             a specific type of network.
     893 * Parameters: DWORD   dwNetType
     894 *             LPSTR   lpProviderName
     895 *             LPDWORD lpBufferSize
     896 * Variables :
     897 * Result    : API-Returncode
     898 * Remark    :
     899 * Status    : UNTESTED STUB
     900 *
     901 * Author    : Patrick Haller [Fri, 1998/02/27 11:55]
     902 *****************************************************************************/
     903
     904ODINFUNCTION3(DWORD,   WNetGetProviderNameA,
     905              DWORD,   dwNetType,
     906              LPSTR,   lpProviderName,
     907              LPDWORD, lpBufferSize)
     908{
     909  dprintf(("MPR:WNetGetProviderNameA not implemented.\n"));
     910  return (ERROR_NO_NETWORK);
     911}
     912
     913
     914/*****************************************************************************
     915 *             The WNetGetProviderName function obtains the provider name for
     916 *             a specific type of network.
     917 * Parameters: DWORD   dwNetType
     918 *             LPWSTR  lpProviderName
     919 *             LPDWORD lpBufferSize
     920 * Variables :
     921 * Result    : API-Returncode
     922 * Remark    :
     923 * Status    : UNTESTED STUB
     924 *
     925 * Author    : Patrick Haller [Fri, 1998/02/27 11:55]
     926 *****************************************************************************/
     927
     928ODINFUNCTION3(DWORD,   WNetGetProviderNameW,
     929              DWORD,   dwNetType,
     930              LPWSTR,  lpProviderName,
     931              LPDWORD, lpBufferSize)
     932{
     933  dprintf(("MPR:WNetGetProviderNameW not implemented.\n"));
     934  return (ERROR_NO_NETWORK);
     935}
     936
     937
     938/*****************************************************************************
    774939 *            The WNetGetUniversalName, functiontakes a drive-based path for
    775940 *             a network resource and obtains a data structure that contains a
  • trunk/src/mpr/MPR.DEF

    r1589 r1590  
    1 ; $Id: MPR.DEF,v 1.3 1999-11-04 10:32:36 phaller Exp $
     1; $Id: MPR.DEF,v 1.4 1999-11-04 10:55:31 phaller Exp $
    22
    33;Created by BLAST for IBMs compiler
     
    2525; WNetClearConnections                 = _WNetClearConnections@??              @16
    2626  WNetCloseEnum                        = _WNetCloseEnum@4                      @17
    27 ; WNetConnectionDialog1A               = _WNetConnectionDialog1A@??            @18
    28 ; WNetConnectionDialog1W               = _WNetConnectionDialog1W@??            @19
     27  WNetConnectionDialog1A               = _WNetConnectionDialog1A@4             @18
     28  WNetConnectionDialog1W               = _WNetConnectionDialog1W@4             @19
    2929; WNetConnectionDialog2                = _WNetConnectionDialog2@??             @20
    3030  WNetConnectionDialog                 = _WNetConnectionDialog@8               @21
    3131; WNetDirectoryNotifyA                 = _WNetDirectoryNotifyA@??              @22
    3232; WNetDirectoryNotifyW                 = _WNetDirectoryNotifyW@??              @23
    33 ; WNetDisconnectDialog1A               = _WNetDisconnectDialog1A@??            @24
    34 ; WNetDisconnectDialog1W               = _WNetDisconnectDialog1W@??            @25
     33  WNetDisconnectDialog1A               = _WNetDisconnectDialog1A@4             @24
     34  WNetDisconnectDialog1W               = _WNetDisconnectDialog1W@4             @25
    3535; WNetDisconnectDialog2                = _WNetDisconnectDialog2@??             @26
    3636  WNetDisconnectDialog                 = _WNetDisconnectDialog@8               @27
     
    5353  WNetGetLastErrorA                    = _WNetGetLastErrorA@20                 @44
    5454  WNetGetLastErrorW                    = _WNetGetLastErrorW@20                 @45
    55 ; WNetGetNetworkInformationA           = _WNetGetNetworkInformationA@??        @46
    56 ; WNetGetNetworkInformationW           = _WNetGetNetworkInformationW@??        @47
     55  WNetGetNetworkInformationA           = _WNetGetNetworkInformationA@8         @46
     56  WNetGetNetworkInformationW           = _WNetGetNetworkInformationW@8         @47
    5757; WNetGetPropertyTextA                 = _WNetGetPropertyTextA@??              @48
    5858; WNetGetPropertyTextW                 = _WNetGetPropertyTextW@??              @49
    59 ; WNetGetProviderNameA                 = _WNetGetProviderNameA@??              @50
    60 ; WNetGetProviderNameW                 = _WNetGetProviderNameW@??              @51
     59  WNetGetProviderNameA                 = _WNetGetProviderNameA@12              @50
     60  WNetGetProviderNameW                 = _WNetGetProviderNameW@12              @51
    6161; WNetGetProviderTypeA                 = _WNetGetProviderTypeA@??              @52
    6262; WNetGetProviderTypeW                 = _WNetGetProviderTypeW@??              @53
  • trunk/src/mpr/makefile

    r1585 r1590  
    1 # $Id: makefile,v 1.7 1999-11-03 23:28:05 sandervl Exp $
     1# $Id: makefile,v 1.8 1999-11-04 10:55:31 phaller Exp $
    22
    33#
     
    3939
    4040
    41 mpr.obj: mpr.cpp mpr.h
     41mpr.obj: mpr.cpp
    4242initterm.obj: initterm.cpp
    4343
Note: See TracChangeset for help on using the changeset viewer.