File:  [WindowsNT SDKs] / mstools / h / winnetwk.h
Revision 1.1.1.3 (vendor branch): download - view: text, annotated - select for diffs
Thu Aug 9 18:23:01 2018 UTC (7 years, 9 months ago) by root
Branches: msft, MAIN
CVS tags: ntsdk-nov-1993, ntsdk-jul-1993, HEAD
Microsoft Windows NT Build 511 (SDK Final Release) 07-24-1993

/*++

Copyright (c) 1991  Microsoft Corporation

Module Name:

    winnetwk.h

Abstract:

    Standard WINNET Header File for NT-WIN32

Author:

    Dan Lafferty (danl)     08-Oct-1991

Environment:

    User Mode -Win32

Notes:

    optional-notes

Revision History:

    08-Oct-1991     danl
	created from winnet 3.10.05 version.

    10-Dec-1991     Johnl
	Updated to conform to Win32 Net API Spec. vers 0.4

    01-Apr-1992     JohnL
	Changed CONNECTION_REMEMBERED flag to CONNECT_UPDATE_PROFILE
	Updated WNetCancelConnection2 to match spec.

    23-Apr-1992     Johnl
	Added error code mappings.  Changed byte counts to character counts.

    27-May-1992     ChuckC
	Made into .x file.

--*/

#ifndef _WINNETWK_
#define _WINNETWK_

#ifdef __cplusplus
extern "C" {
#endif

//
// RESOURCE ENUMERATION
//

#define RESOURCE_CONNECTED      0x00000001
#define RESOURCE_GLOBALNET      0x00000002
#define RESOURCE_REMEMBERED     0x00000003

#define RESOURCETYPE_ANY        0x00000000
#define RESOURCETYPE_DISK       0x00000001
#define RESOURCETYPE_PRINT      0x00000002
#define RESOURCETYPE_UNKNOWN    0xFFFFFFFF

#define RESOURCEUSAGE_CONNECTABLE   0x00000001
#define RESOURCEUSAGE_CONTAINER     0x00000002
#define RESOURCEUSAGE_RESERVED      0x80000000

#define RESOURCEDISPLAYTYPE_GENERIC        0x00000000
#define RESOURCEDISPLAYTYPE_DOMAIN         0x00000001
#define RESOURCEDISPLAYTYPE_SERVER         0x00000002
#define RESOURCEDISPLAYTYPE_SHARE          0x00000003
#define RESOURCEDISPLAYTYPE_FILE           0x00000004
#define RESOURCEDISPLAYTYPE_GROUP          0x00000005

typedef struct  _NETRESOURCEA {
    DWORD    dwScope;
    DWORD    dwType;
    DWORD    dwDisplayType;
    DWORD    dwUsage;
    LPSTR    lpLocalName;
    LPSTR    lpRemoteName;
    LPSTR    lpComment ;
    LPSTR    lpProvider;
}NETRESOURCEA, *LPNETRESOURCEA;
typedef struct  _NETRESOURCEW {
    DWORD    dwScope;
    DWORD    dwType;
    DWORD    dwDisplayType;
    DWORD    dwUsage;
    LPWSTR   lpLocalName;
    LPWSTR   lpRemoteName;
    LPWSTR   lpComment ;
    LPWSTR   lpProvider;
}NETRESOURCEW, *LPNETRESOURCEW;
#ifdef UNICODE
typedef NETRESOURCEW NETRESOURCE;
typedef LPNETRESOURCEW LPNETRESOURCE;
#else
typedef NETRESOURCEA NETRESOURCE;
typedef LPNETRESOURCEA LPNETRESOURCE;
#endif // UNICODE


//
//  CONNECTIONS
// 

#define CONNECT_UPDATE_PROFILE	   0x00000001

DWORD APIENTRY
WNetAddConnectionA (
     LPSTR   lpRemoteName,
     LPSTR   lpPassword,
     LPSTR   lpLocalName
    );
DWORD APIENTRY
WNetAddConnectionW (
     LPWSTR   lpRemoteName,
     LPWSTR   lpPassword,
     LPWSTR   lpLocalName
    );
#ifdef UNICODE
#define WNetAddConnection  WNetAddConnectionW
#else
#define WNetAddConnection  WNetAddConnectionA
#endif // !UNICODE


DWORD APIENTRY
WNetAddConnection2A (
     LPNETRESOURCEA lpNetResource,
     LPSTR        lpPassword,
     LPSTR        lpUserName,
     DWORD          dwFlags
    );
DWORD APIENTRY
WNetAddConnection2W (
     LPNETRESOURCEW lpNetResource,
     LPWSTR        lpPassword,
     LPWSTR        lpUserName,
     DWORD          dwFlags
    );
#ifdef UNICODE
#define WNetAddConnection2  WNetAddConnection2W
#else
#define WNetAddConnection2  WNetAddConnection2A
#endif // !UNICODE

DWORD APIENTRY
WNetCancelConnectionA (
     LPSTR lpName,
     BOOL    fForce
    );
DWORD APIENTRY
WNetCancelConnectionW (
     LPWSTR lpName,
     BOOL    fForce
    );
#ifdef UNICODE
#define WNetCancelConnection  WNetCancelConnectionW
#else
#define WNetCancelConnection  WNetCancelConnectionA
#endif // !UNICODE

DWORD APIENTRY
WNetCancelConnection2A (
     LPSTR lpName,
     DWORD   dwFlags,
     BOOL    fForce
    );
DWORD APIENTRY
WNetCancelConnection2W (
     LPWSTR lpName,
     DWORD   dwFlags,
     BOOL    fForce
    );
#ifdef UNICODE
#define WNetCancelConnection2  WNetCancelConnection2W
#else
#define WNetCancelConnection2  WNetCancelConnection2A
#endif // !UNICODE


DWORD APIENTRY
WNetGetConnectionA (
     LPSTR lpLocalName,
     LPSTR lpRemoteName,
     LPDWORD lpnLength
    );
DWORD APIENTRY
WNetGetConnectionW (
     LPWSTR lpLocalName,
     LPWSTR lpRemoteName,
     LPDWORD lpnLength
    );
#ifdef UNICODE
#define WNetGetConnection  WNetGetConnectionW
#else
#define WNetGetConnection  WNetGetConnectionA
#endif // !UNICODE


DWORD APIENTRY
WNetOpenEnumA (
     DWORD          dwScope,
     DWORD          dwType,
     DWORD          dwUsage,
     LPNETRESOURCEA lpNetResource,
     LPHANDLE       lphEnum
    );
DWORD APIENTRY
WNetOpenEnumW (
     DWORD          dwScope,
     DWORD          dwType,
     DWORD          dwUsage,
     LPNETRESOURCEW lpNetResource,
     LPHANDLE       lphEnum
    );
#ifdef UNICODE
#define WNetOpenEnum  WNetOpenEnumW
#else
#define WNetOpenEnum  WNetOpenEnumA
#endif // !UNICODE

DWORD APIENTRY
WNetEnumResourceA (
     HANDLE  hEnum,
     LPDWORD lpcCount,
     LPVOID  lpBuffer,
     LPDWORD lpBufferSize
    );
DWORD APIENTRY
WNetEnumResourceW (
     HANDLE  hEnum,
     LPDWORD lpcCount,
     LPVOID  lpBuffer,
     LPDWORD lpBufferSize
    );
#ifdef UNICODE
#define WNetEnumResource  WNetEnumResourceW
#else
#define WNetEnumResource  WNetEnumResourceA
#endif // !UNICODE

DWORD APIENTRY
WNetCloseEnum (
    HANDLE   hEnum
    );

//
//  OTHER
// 

DWORD APIENTRY
WNetGetUserA (
     LPSTR  lpName,
     LPSTR  lpUserName,
     LPDWORD  lpnLength
    );
DWORD APIENTRY
WNetGetUserW (
     LPWSTR  lpName,
     LPWSTR  lpUserName,
     LPDWORD  lpnLength
    );
#ifdef UNICODE
#define WNetGetUser  WNetGetUserW
#else
#define WNetGetUser  WNetGetUserA
#endif // !UNICODE

//
//  BROWSE DIALOGS
// 

DWORD APIENTRY WNetConnectionDialog(
    HWND  hwnd,
    DWORD dwType
    );

DWORD APIENTRY WNetDisconnectDialog(
    HWND  hwnd,
    DWORD dwType
    );

//
//  ERRORS
// 

DWORD APIENTRY
WNetGetLastErrorA (
     LPDWORD    lpError,
     LPSTR    lpErrorBuf,
     DWORD      nErrorBufSize,
     LPSTR    lpNameBuf,
     DWORD      nNameBufSize
    );
DWORD APIENTRY
WNetGetLastErrorW (
     LPDWORD    lpError,
     LPWSTR    lpErrorBuf,
     DWORD      nErrorBufSize,
     LPWSTR    lpNameBuf,
     DWORD      nNameBufSize
    );
#ifdef UNICODE
#define WNetGetLastError  WNetGetLastErrorW
#else
#define WNetGetLastError  WNetGetLastErrorA
#endif // !UNICODE

//
//  STATUS CODES
//
//  This section is provided for backward compatibility.  Use of the ERROR_*
//  codes is preferred.  The WN_* error codes may not be available in future
//  releases.
// 

// General   

#define WN_SUCCESS		   NO_ERROR
#define WN_NOT_SUPPORTED	   ERROR_NOT_SUPPORTED
#define WN_NET_ERROR		   ERROR_UNEXP_NET_ERR
#define WN_MORE_DATA		   ERROR_MORE_DATA
#define WN_BAD_POINTER		   ERROR_INVALID_ADDRESS
#define WN_BAD_VALUE		   ERROR_INVALID_PARAMETER
#define WN_BAD_PASSWORD 	   ERROR_INVALID_PASSWORD
#define WN_ACCESS_DENIED	   ERROR_ACCESS_DENIED
#define WN_FUNCTION_BUSY	   ERROR_BUSY
#define WN_WINDOWS_ERROR	   ERROR_UNEXP_NET_ERR
#define WN_BAD_USER		   ERROR_BAD_USERNAME
#define WN_OUT_OF_MEMORY	   ERROR_NOT_ENOUGH_MEMORY
#define WN_NO_NETWORK		   ERROR_NO_NETWORK
#define WN_EXTENDED_ERROR	   ERROR_EXTENDED_ERROR

// Connection

#define WN_NOT_CONNECTED	   ERROR_NOT_CONNECTED
#define WN_OPEN_FILES		   ERROR_OPEN_FILES
#define WN_DEVICE_IN_USE	   ERROR_DEVICE_IN_USE
#define WN_BAD_NETNAME		   ERROR_BAD_NET_NAME
#define WN_BAD_LOCALNAME	   ERROR_BAD_DEVICE
#define WN_ALREADY_CONNECTED	   ERROR_ALREADY_ASSIGNED
#define WN_DEVICE_ERROR 	   ERROR_GEN_FAILURE
#define WN_CONNECTION_CLOSED	   ERROR_CONNECTION_UNAVAIL
#define WN_NO_NET_OR_BAD_PATH	   ERROR_NO_NET_OR_BAD_PATH
#define WN_BAD_PROVIDER 	   ERROR_BAD_PROVIDER
#define WN_CANNOT_OPEN_PROFILE	   ERROR_CANNOT_OPEN_PROFILE
#define WN_BAD_PROFILE		   ERROR_BAD_PROFILE

// Enumeration

#define WN_BAD_HANDLE		   ERROR_INVALID_HANDLE
#define WN_NO_MORE_ENTRIES	   ERROR_NO_MORE_ITEMS
#define WN_NOT_CONTAINER	   ERROR_NOT_CONTAINER

#define WN_NO_ERROR		   NO_ERROR

#ifdef __cplusplus
}
#endif

#endif  // _WINNETWK_

unix.superglobalmegacorp.com

This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.