1298 lines
33 KiB
C
1298 lines
33 KiB
C
/* Copyright (c) 1992-1996, Microsoft Corporation, all rights reserved
|
|
**
|
|
** ras.h
|
|
** Remote Access external API
|
|
** Public header for external API clients
|
|
**
|
|
** WINVER values in this file:
|
|
** WINVER < 0x400 = Windows NT 3.5, Windows NT 3.51
|
|
** WINVER = 0x400 = Windows 95, Windows NT SUR (default)
|
|
** WINVER > 0x400 = Windows NT SUR enhancements
|
|
*/
|
|
|
|
#ifndef _RAS_H_
|
|
#define _RAS_H_
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#ifndef UNLEN
|
|
#include <lmcons.h>
|
|
#endif
|
|
|
|
#include <pshpack4.h>
|
|
|
|
#define RAS_MaxDeviceType 16
|
|
#define RAS_MaxPhoneNumber 128
|
|
#define RAS_MaxIpAddress 15
|
|
#define RAS_MaxIpxAddress 21
|
|
|
|
#if (WINVER >= 0x400)
|
|
#define RAS_MaxEntryName 256
|
|
#define RAS_MaxDeviceName 128
|
|
#define RAS_MaxCallbackNumber RAS_MaxPhoneNumber
|
|
#else
|
|
#define RAS_MaxEntryName 20
|
|
#define RAS_MaxDeviceName 32
|
|
#define RAS_MaxCallbackNumber 48
|
|
#endif
|
|
|
|
#define RAS_MaxAreaCode 10
|
|
#define RAS_MaxPadType 32
|
|
#define RAS_MaxX25Address 200
|
|
#define RAS_MaxFacilities 200
|
|
#define RAS_MaxUserData 200
|
|
|
|
DECLARE_HANDLE( HRASCONN );
|
|
#define LPHRASCONN HRASCONN*
|
|
|
|
|
|
/* Identifies an active RAS connection. (See RasEnumConnections)
|
|
*/
|
|
#define RASCONNW struct tagRASCONNW
|
|
RASCONNW
|
|
{
|
|
DWORD dwSize;
|
|
HRASCONN hrasconn;
|
|
WCHAR szEntryName[ RAS_MaxEntryName + 1 ];
|
|
|
|
#if (WINVER >= 0x400)
|
|
WCHAR szDeviceType[ RAS_MaxDeviceType + 1 ];
|
|
WCHAR szDeviceName[ RAS_MaxDeviceName + 1 ];
|
|
#endif
|
|
#if (WINVER >= 0x401)
|
|
WCHAR szPhonebook [ MAX_PATH ];
|
|
DWORD dwSubEntry;
|
|
#endif
|
|
};
|
|
|
|
#define RASCONNA struct tagRASCONNA
|
|
RASCONNA
|
|
{
|
|
DWORD dwSize;
|
|
HRASCONN hrasconn;
|
|
CHAR szEntryName[ RAS_MaxEntryName + 1 ];
|
|
|
|
#if (WINVER >= 0x400)
|
|
CHAR szDeviceType[ RAS_MaxDeviceType + 1 ];
|
|
CHAR szDeviceName[ RAS_MaxDeviceName + 1 ];
|
|
#endif
|
|
#if (WINVER >= 0x401)
|
|
CHAR szPhonebook [ MAX_PATH ];
|
|
DWORD dwSubEntry;
|
|
#endif
|
|
};
|
|
|
|
#ifdef UNICODE
|
|
#define RASCONN RASCONNW
|
|
#else
|
|
#define RASCONN RASCONNA
|
|
#endif
|
|
|
|
#define LPRASCONNW RASCONNW*
|
|
#define LPRASCONNA RASCONNA*
|
|
#define LPRASCONN RASCONN*
|
|
|
|
|
|
/* Enumerates intermediate states to a connection. (See RasDial)
|
|
*/
|
|
#define RASCS_PAUSED 0x1000
|
|
#define RASCS_DONE 0x2000
|
|
|
|
#define RASCONNSTATE enum tagRASCONNSTATE
|
|
RASCONNSTATE
|
|
{
|
|
RASCS_OpenPort = 0,
|
|
RASCS_PortOpened,
|
|
RASCS_ConnectDevice,
|
|
RASCS_DeviceConnected,
|
|
RASCS_AllDevicesConnected,
|
|
RASCS_Authenticate,
|
|
RASCS_AuthNotify,
|
|
RASCS_AuthRetry,
|
|
RASCS_AuthCallback,
|
|
RASCS_AuthChangePassword,
|
|
RASCS_AuthProject,
|
|
RASCS_AuthLinkSpeed,
|
|
RASCS_AuthAck,
|
|
RASCS_ReAuthenticate,
|
|
RASCS_Authenticated,
|
|
RASCS_PrepareForCallback,
|
|
RASCS_WaitForModemReset,
|
|
RASCS_WaitForCallback,
|
|
RASCS_Projected,
|
|
|
|
#if (WINVER >= 0x400)
|
|
RASCS_StartAuthentication,
|
|
RASCS_CallbackComplete,
|
|
RASCS_LogonNetwork,
|
|
#endif
|
|
RASCS_SubEntryConnected,
|
|
RASCS_SubEntryDisconnected,
|
|
|
|
RASCS_Interactive = RASCS_PAUSED,
|
|
RASCS_RetryAuthentication,
|
|
RASCS_CallbackSetByCaller,
|
|
RASCS_PasswordExpired,
|
|
|
|
RASCS_Connected = RASCS_DONE,
|
|
RASCS_Disconnected
|
|
};
|
|
|
|
#define LPRASCONNSTATE RASCONNSTATE*
|
|
|
|
|
|
/* Describes the status of a RAS connection. (See RasConnectionStatus)
|
|
*/
|
|
#define RASCONNSTATUSW struct tagRASCONNSTATUSW
|
|
RASCONNSTATUSW
|
|
{
|
|
DWORD dwSize;
|
|
RASCONNSTATE rasconnstate;
|
|
DWORD dwError;
|
|
WCHAR szDeviceType[ RAS_MaxDeviceType + 1 ];
|
|
WCHAR szDeviceName[ RAS_MaxDeviceName + 1 ];
|
|
#if (WINVER >= 0x401)
|
|
WCHAR szPhoneNumber[ RAS_MaxPhoneNumber + 1 ];
|
|
#endif
|
|
};
|
|
|
|
#define RASCONNSTATUSA struct tagRASCONNSTATUSA
|
|
RASCONNSTATUSA
|
|
{
|
|
DWORD dwSize;
|
|
RASCONNSTATE rasconnstate;
|
|
DWORD dwError;
|
|
CHAR szDeviceType[ RAS_MaxDeviceType + 1 ];
|
|
CHAR szDeviceName[ RAS_MaxDeviceName + 1 ];
|
|
#if (WINVER >= 0x401)
|
|
CHAR szPhoneNumber[ RAS_MaxPhoneNumber + 1 ];
|
|
#endif
|
|
};
|
|
|
|
#ifdef UNICODE
|
|
#define RASCONNSTATUS RASCONNSTATUSW
|
|
#else
|
|
#define RASCONNSTATUS RASCONNSTATUSA
|
|
#endif
|
|
|
|
#define LPRASCONNSTATUSW RASCONNSTATUSW*
|
|
#define LPRASCONNSTATUSA RASCONNSTATUSA*
|
|
#define LPRASCONNSTATUS RASCONNSTATUS*
|
|
|
|
|
|
/* Describes connection establishment parameters. (See RasDial)
|
|
*/
|
|
#define RASDIALPARAMSW struct tagRASDIALPARAMSW
|
|
RASDIALPARAMSW
|
|
{
|
|
DWORD dwSize;
|
|
WCHAR szEntryName[ RAS_MaxEntryName + 1 ];
|
|
WCHAR szPhoneNumber[ RAS_MaxPhoneNumber + 1 ];
|
|
WCHAR szCallbackNumber[ RAS_MaxCallbackNumber + 1 ];
|
|
WCHAR szUserName[ UNLEN + 1 ];
|
|
WCHAR szPassword[ PWLEN + 1 ];
|
|
WCHAR szDomain[ DNLEN + 1 ];
|
|
#if (WINVER >= 0x401)
|
|
DWORD dwSubEntry;
|
|
DWORD dwCallbackId;
|
|
#endif
|
|
};
|
|
|
|
#define RASDIALPARAMSA struct tagRASDIALPARAMSA
|
|
RASDIALPARAMSA
|
|
{
|
|
DWORD dwSize;
|
|
CHAR szEntryName[ RAS_MaxEntryName + 1 ];
|
|
CHAR szPhoneNumber[ RAS_MaxPhoneNumber + 1 ];
|
|
CHAR szCallbackNumber[ RAS_MaxCallbackNumber + 1 ];
|
|
CHAR szUserName[ UNLEN + 1 ];
|
|
CHAR szPassword[ PWLEN + 1 ];
|
|
CHAR szDomain[ DNLEN + 1 ];
|
|
#if (WINVER >= 0x401)
|
|
DWORD dwSubEntry;
|
|
DWORD dwCallbackId;
|
|
#endif
|
|
};
|
|
|
|
#ifdef UNICODE
|
|
#define RASDIALPARAMS RASDIALPARAMSW
|
|
#else
|
|
#define RASDIALPARAMS RASDIALPARAMSA
|
|
#endif
|
|
|
|
#define LPRASDIALPARAMSW RASDIALPARAMSW*
|
|
#define LPRASDIALPARAMSA RASDIALPARAMSA*
|
|
#define LPRASDIALPARAMS RASDIALPARAMS*
|
|
|
|
|
|
/* Describes extended connection establishment options. (See RasDial)
|
|
*/
|
|
#define RASDIALEXTENSIONS struct tagRASDIALEXTENSIONS
|
|
RASDIALEXTENSIONS
|
|
{
|
|
DWORD dwSize;
|
|
DWORD dwfOptions;
|
|
HWND hwndParent;
|
|
DWORD reserved;
|
|
};
|
|
|
|
#define LPRASDIALEXTENSIONS RASDIALEXTENSIONS*
|
|
|
|
/* 'dwfOptions' bit flags.
|
|
*/
|
|
#define RDEOPT_UsePrefixSuffix 0x00000001
|
|
#define RDEOPT_PausedStates 0x00000002
|
|
#define RDEOPT_IgnoreModemSpeaker 0x00000004
|
|
#define RDEOPT_SetModemSpeaker 0x00000008
|
|
#define RDEOPT_IgnoreSoftwareCompression 0x00000010
|
|
#define RDEOPT_SetSoftwareCompression 0x00000020
|
|
#define RDEOPT_DisableConnectedUI 0x00000040
|
|
#define RDEOPT_DisableReconnectUI 0x00000080
|
|
#define RDEOPT_DisableReconnect 0x00000100
|
|
#define RDEOPT_NoUser 0x00000200
|
|
#define RDEOPT_PauseOnScript 0x00000400
|
|
|
|
|
|
/* Describes an enumerated RAS phone book entry name. (See RasEntryEnum)
|
|
*/
|
|
#define RASENTRYNAMEW struct tagRASENTRYNAMEW
|
|
RASENTRYNAMEW
|
|
{
|
|
DWORD dwSize;
|
|
WCHAR szEntryName[ RAS_MaxEntryName + 1 ];
|
|
};
|
|
|
|
#define RASENTRYNAMEA struct tagRASENTRYNAMEA
|
|
RASENTRYNAMEA
|
|
{
|
|
DWORD dwSize;
|
|
CHAR szEntryName[ RAS_MaxEntryName + 1 ];
|
|
};
|
|
|
|
#ifdef UNICODE
|
|
#define RASENTRYNAME RASENTRYNAMEW
|
|
#else
|
|
#define RASENTRYNAME RASENTRYNAMEA
|
|
#endif
|
|
|
|
#define LPRASENTRYNAMEW RASENTRYNAMEW*
|
|
#define LPRASENTRYNAMEA RASENTRYNAMEA*
|
|
#define LPRASENTRYNAME RASENTRYNAME*
|
|
|
|
|
|
/* Protocol code to projection data structure mapping.
|
|
*/
|
|
#define RASPROJECTION enum tagRASPROJECTION
|
|
RASPROJECTION
|
|
{
|
|
RASP_Amb = 0x10000,
|
|
RASP_PppNbf = 0x803F,
|
|
RASP_PppIpx = 0x802B,
|
|
RASP_PppIp = 0x8021,
|
|
#if (WINVER >= 0x40A)
|
|
RASP_PppCcp = 0x80FD,
|
|
#endif
|
|
RASP_PppLcp = 0xC021,
|
|
RASP_Slip = 0x20000
|
|
};
|
|
|
|
#define LPRASPROJECTION RASPROJECTION*
|
|
|
|
|
|
/* Describes the result of a RAS AMB (Authentication Message Block)
|
|
** projection. This protocol is used with NT 3.1 and OS/2 1.3 downlevel
|
|
** RAS servers.
|
|
*/
|
|
#define RASAMBW struct tagRASAMBW
|
|
RASAMBW
|
|
{
|
|
DWORD dwSize;
|
|
DWORD dwError;
|
|
WCHAR szNetBiosError[ NETBIOS_NAME_LEN + 1 ];
|
|
BYTE bLana;
|
|
};
|
|
|
|
#define RASAMBA struct tagRASAMBA
|
|
RASAMBA
|
|
{
|
|
DWORD dwSize;
|
|
DWORD dwError;
|
|
CHAR szNetBiosError[ NETBIOS_NAME_LEN + 1 ];
|
|
BYTE bLana;
|
|
};
|
|
|
|
#ifdef UNICODE
|
|
#define RASAMB RASAMBW
|
|
#else
|
|
#define RASAMB RASAMBA
|
|
#endif
|
|
|
|
#define LPRASAMBW RASAMBW*
|
|
#define LPRASAMBA RASAMBA*
|
|
#define LPRASAMB RASAMB*
|
|
|
|
|
|
/* Describes the result of a PPP NBF (NetBEUI) projection.
|
|
*/
|
|
#define RASPPPNBFW struct tagRASPPPNBFW
|
|
RASPPPNBFW
|
|
{
|
|
DWORD dwSize;
|
|
DWORD dwError;
|
|
DWORD dwNetBiosError;
|
|
WCHAR szNetBiosError[ NETBIOS_NAME_LEN + 1 ];
|
|
WCHAR szWorkstationName[ NETBIOS_NAME_LEN + 1 ];
|
|
BYTE bLana;
|
|
};
|
|
|
|
#define RASPPPNBFA struct tagRASPPPNBFA
|
|
RASPPPNBFA
|
|
{
|
|
DWORD dwSize;
|
|
DWORD dwError;
|
|
DWORD dwNetBiosError;
|
|
CHAR szNetBiosError[ NETBIOS_NAME_LEN + 1 ];
|
|
CHAR szWorkstationName[ NETBIOS_NAME_LEN + 1 ];
|
|
BYTE bLana;
|
|
};
|
|
|
|
#ifdef UNICODE
|
|
#define RASPPPNBF RASPPPNBFW
|
|
#else
|
|
#define RASPPPNBF RASPPPNBFA
|
|
#endif
|
|
|
|
#define LPRASPPPNBFW RASPPPNBFW*
|
|
#define LPRASPPPNBFA RASPPPNBFA*
|
|
#define LPRASPPPNBF RASPPPNBF*
|
|
|
|
|
|
/* Describes the results of a PPP IPX (Internetwork Packet Exchange)
|
|
** projection.
|
|
*/
|
|
#define RASPPPIPXW struct tagRASIPXW
|
|
RASPPPIPXW
|
|
{
|
|
DWORD dwSize;
|
|
DWORD dwError;
|
|
WCHAR szIpxAddress[ RAS_MaxIpxAddress + 1 ];
|
|
};
|
|
|
|
|
|
#define RASPPPIPXA struct tagRASPPPIPXA
|
|
RASPPPIPXA
|
|
{
|
|
DWORD dwSize;
|
|
DWORD dwError;
|
|
CHAR szIpxAddress[ RAS_MaxIpxAddress + 1 ];
|
|
};
|
|
|
|
#ifdef UNICODE
|
|
#define RASPPPIPX RASPPPIPXW
|
|
#else
|
|
#define RASPPPIPX RASPPPIPXA
|
|
#endif
|
|
|
|
#define LPRASPPPIPXW RASPPPIPXW*
|
|
#define LPRASPPPIPXA RASPPPIPXA*
|
|
#define LPRASPPPIPX RASPPPIPX*
|
|
|
|
|
|
/* Describes the results of a PPP IP (Internet) projection.
|
|
*/
|
|
#define RASPPPIPW struct tagRASPPPIPW
|
|
RASPPPIPW
|
|
{
|
|
DWORD dwSize;
|
|
DWORD dwError;
|
|
WCHAR szIpAddress[ RAS_MaxIpAddress + 1 ];
|
|
|
|
#ifndef WINNT35COMPATIBLE
|
|
|
|
/* This field was added between Windows NT 3.51 beta and Windows NT 3.51
|
|
** final, and between Windows 95 M8 beta and Windows 95 final. If you do
|
|
** not require the server address and wish to retrieve PPP IP information
|
|
** from Windows NT 3.5 or early Windows NT 3.51 betas, or on early Windows
|
|
** 95 betas, define WINNT35COMPATIBLE.
|
|
**
|
|
** The server IP address is not provided by all PPP implementations,
|
|
** though Windows NT server's do provide it.
|
|
*/
|
|
WCHAR szServerIpAddress[ RAS_MaxIpAddress + 1 ];
|
|
|
|
#endif
|
|
};
|
|
|
|
#define RASPPPIPA struct tagRASPPPIPA
|
|
RASPPPIPA
|
|
{
|
|
DWORD dwSize;
|
|
DWORD dwError;
|
|
CHAR szIpAddress[ RAS_MaxIpAddress + 1 ];
|
|
|
|
#ifndef WINNT35COMPATIBLE
|
|
|
|
/* See RASPPPIPW comment.
|
|
*/
|
|
CHAR szServerIpAddress[ RAS_MaxIpAddress + 1 ];
|
|
|
|
#endif
|
|
};
|
|
|
|
#ifdef UNICODE
|
|
#define RASPPPIP RASPPPIPW
|
|
#else
|
|
#define RASPPPIP RASPPPIPA
|
|
#endif
|
|
|
|
#define LPRASPPPIPW RASPPPIPW*
|
|
#define LPRASPPPIPA RASPPPIPA*
|
|
#define LPRASPPPIP RASPPPIP*
|
|
|
|
|
|
#if (WINVER >= 0x40A)
|
|
|
|
/* Describes the results of a PPP CCP (Compression Control Protocol) projection.
|
|
*/
|
|
|
|
/* RASPPPCCP 'dwCompressionAlgorithm' values.
|
|
*/
|
|
#define RASCCPCA_MPPC 0x00000012
|
|
#define RASCCPCA_STAC 0x00000011
|
|
|
|
/* RASPPPCCP 'dwOptions' values.
|
|
*/
|
|
#define RASCCPO_Compression 0x00000001
|
|
#define RASCCPO_Encryption1 0x00000010
|
|
#define RASCCPO_Encryption2 0x00000020
|
|
#define RASCCPO_Encryption3 0x00000040
|
|
|
|
#define RASPPPCCPW struct tagRASCCPW
|
|
RASPPPCCPW
|
|
{
|
|
DWORD dwSize;
|
|
DWORD dwError;
|
|
DWORD dwCompressionAlgorithm;
|
|
DWORD dwOptions;
|
|
DWORD dwServerCompressionAlgorithm;
|
|
DWORD dwServerOptions;
|
|
};
|
|
|
|
|
|
#define RASPPPCCPA struct tagRASPPPCCPA
|
|
RASPPPCCPA
|
|
{
|
|
DWORD dwSize;
|
|
DWORD dwError;
|
|
DWORD dwCompressionAlgorithm;
|
|
DWORD dwOptions;
|
|
DWORD dwServerCompressionAlgorithm;
|
|
DWORD dwServerOptions;
|
|
};
|
|
|
|
#ifdef UNICODE
|
|
#define RASPPPCCP RASPPPCCPW
|
|
#else
|
|
#define RASPPPCCP RASPPPCCPA
|
|
#endif
|
|
|
|
#define LPRASPPPCCPW RASPPPCCPW*
|
|
#define LPRASPPPCCPA RASPPPCCPA*
|
|
#define LPRASPPPCCP RASPPPCCP*
|
|
|
|
|
|
/* Describes the results of a PPP LCP (Link Control Protocol) projection.
|
|
*/
|
|
|
|
/* RASPPPLCP 'dwAuthenticatonProtocol' values.
|
|
*/
|
|
#define RASLCPAP_PAP 0xC023
|
|
#define RASLCPAP_SPAP 0xC027
|
|
#define RASLCPAP_SPAP_OLD 0xC123
|
|
#define RASLCPAP_CHAP 0xC223
|
|
#define RASLCPAP_EAP 0xC227
|
|
|
|
/* RASPPPLCP 'dwAuthenticatonData' values.
|
|
*/
|
|
#define RASLCPAD_CHAP_MD5 0x05
|
|
#define RASLCPAD_CHAP_MS 0x80
|
|
|
|
#define RASPPPLCPW struct tagRASLCPW
|
|
RASPPPLCPW
|
|
{
|
|
DWORD dwSize;
|
|
DWORD dwError;
|
|
DWORD dwAuthenticationProtocol;
|
|
DWORD dwAuthenticationData;
|
|
DWORD dwServerAuthenticationProtocol;
|
|
DWORD dwServerAuthenticationData;
|
|
BOOL fMultilink;
|
|
};
|
|
|
|
|
|
#define RASPPPLCPA struct tagRASPPPLCPA
|
|
RASPPPLCPA
|
|
{
|
|
DWORD dwSize;
|
|
DWORD dwError;
|
|
DWORD dwAuthenticationProtocol;
|
|
DWORD dwAuthenticationData;
|
|
DWORD dwServerAuthenticationProtocol;
|
|
DWORD dwServerAuthenticationData;
|
|
BOOL fMultilink;
|
|
};
|
|
|
|
#ifdef UNICODE
|
|
#define RASPPPLCP RASPPPLCPW
|
|
#else
|
|
#define RASPPPLCP RASPPPLCPA
|
|
#endif
|
|
|
|
#define LPRASPPPLCPW RASPPPLCPW*
|
|
#define LPRASPPPLCPA RASPPPLCPA*
|
|
#define LPRASPPPLCP RASPPPLCP*
|
|
|
|
#else
|
|
/* Describes the results of a PPP LCP/multi-link negotiation.
|
|
*/
|
|
|
|
#define RASPPPLCP struct tagRASPPPLCP
|
|
RASPPPLCP
|
|
{
|
|
DWORD dwSize;
|
|
BOOL fBundled;
|
|
};
|
|
|
|
#define LPRASPPPLCP RASPPPLCP*
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* Describes the results of a SLIP (Serial Line IP) projection.
|
|
*/
|
|
#define RASSLIPW struct tagRASSLIPW
|
|
RASSLIPW
|
|
{
|
|
DWORD dwSize;
|
|
DWORD dwError;
|
|
WCHAR szIpAddress[ RAS_MaxIpAddress + 1 ];
|
|
};
|
|
|
|
|
|
#define RASSLIPA struct tagRASSLIPA
|
|
RASSLIPA
|
|
{
|
|
DWORD dwSize;
|
|
DWORD dwError;
|
|
CHAR szIpAddress[ RAS_MaxIpAddress + 1 ];
|
|
};
|
|
|
|
#ifdef UNICODE
|
|
#define RASSLIP RASSLIPW
|
|
#else
|
|
#define RASSLIP RASSLIPA
|
|
#endif
|
|
|
|
#define LPRASSLIPW RASSLIPW*
|
|
#define LPRASSLIPA RASSLIPA*
|
|
#define LPRASSLIP RASSLIP*
|
|
|
|
|
|
/* If using RasDial message notifications, get the notification message code
|
|
** by passing this string to the RegisterWindowMessageA() API.
|
|
** WM_RASDIALEVENT is used only if a unique message cannot be registered.
|
|
*/
|
|
#define RASDIALEVENT "RasDialEvent"
|
|
#define WM_RASDIALEVENT 0xCCCD
|
|
|
|
/* Prototypes for caller's RasDial callback handler. Arguments are the
|
|
** message ID (currently always WM_RASDIALEVENT), the current RASCONNSTATE and
|
|
** the error that has occurred (or 0 if none). Extended arguments are the
|
|
** handle of the RAS connection and an extended error code.
|
|
**
|
|
** For RASDIALFUNC2, subsequent callback notifications for all
|
|
** subentries can be cancelled by returning FALSE.
|
|
*/
|
|
typedef VOID (WINAPI *RASDIALFUNC)( UINT, RASCONNSTATE, DWORD );
|
|
typedef VOID (WINAPI *RASDIALFUNC1)( HRASCONN, UINT, RASCONNSTATE, DWORD, DWORD );
|
|
typedef DWORD (WINAPI *RASDIALFUNC2)( DWORD, DWORD, HRASCONN, UINT, RASCONNSTATE, DWORD, DWORD );
|
|
|
|
|
|
/* Information describing a RAS-capable device.
|
|
*/
|
|
#define RASDEVINFOW struct tagRASDEVINFOW
|
|
RASDEVINFOW
|
|
{
|
|
DWORD dwSize;
|
|
WCHAR szDeviceType[ RAS_MaxDeviceType + 1 ];
|
|
WCHAR szDeviceName[ RAS_MaxDeviceName + 1 ];
|
|
};
|
|
|
|
#define RASDEVINFOA struct tagRASDEVINFOA
|
|
RASDEVINFOA
|
|
{
|
|
DWORD dwSize;
|
|
CHAR szDeviceType[ RAS_MaxDeviceType + 1 ];
|
|
CHAR szDeviceName[ RAS_MaxDeviceName + 1 ];
|
|
};
|
|
|
|
#ifdef UNICODE
|
|
#define RASDEVINFO RASDEVINFOW
|
|
#else
|
|
#define RASDEVINFO RASDEVINFOA
|
|
#endif
|
|
|
|
#define LPRASDEVINFOW RASDEVINFOW*
|
|
#define LPRASDEVINFOA RASDEVINFOA*
|
|
#define LPRASDEVINFO RASDEVINFO*
|
|
|
|
/* RAS country information (currently retrieved from TAPI).
|
|
*/
|
|
#define RASCTRYINFO struct RASCTRYINFO
|
|
RASCTRYINFO
|
|
{
|
|
DWORD dwSize;
|
|
DWORD dwCountryID;
|
|
DWORD dwNextCountryID;
|
|
DWORD dwCountryCode;
|
|
DWORD dwCountryNameOffset;
|
|
};
|
|
|
|
/* There is currently no difference between
|
|
** RASCTRYINFOA and RASCTRYINFOW. This may
|
|
** change in the future.
|
|
*/
|
|
#define RASCTRYINFOW RASCTRYINFO
|
|
#define RASCTRYINFOA RASCTRYINFO
|
|
|
|
#define LPRASCTRYINFOW RASCTRYINFOW*
|
|
#define LPRASCTRYINFOA RASCTRYINFOW*
|
|
#define LPRASCTRYINFO RASCTRYINFO*
|
|
|
|
/* A RAS IP address.
|
|
*/
|
|
#define RASIPADDR struct RASIPADDR
|
|
RASIPADDR
|
|
{
|
|
BYTE a;
|
|
BYTE b;
|
|
BYTE c;
|
|
BYTE d;
|
|
};
|
|
|
|
#define LPRASIPADDR RASIPADDR*
|
|
|
|
/* A RAS phone book entry.
|
|
*/
|
|
#define RASENTRYA struct tagRASENTRYA
|
|
RASENTRYA
|
|
{
|
|
DWORD dwSize;
|
|
DWORD dwfOptions;
|
|
//
|
|
// Location/phone number.
|
|
//
|
|
DWORD dwCountryID;
|
|
DWORD dwCountryCode;
|
|
CHAR szAreaCode[ RAS_MaxAreaCode + 1 ];
|
|
CHAR szLocalPhoneNumber[ RAS_MaxPhoneNumber + 1 ];
|
|
DWORD dwAlternateOffset;
|
|
//
|
|
// PPP/Ip
|
|
//
|
|
RASIPADDR ipaddr;
|
|
RASIPADDR ipaddrDns;
|
|
RASIPADDR ipaddrDnsAlt;
|
|
RASIPADDR ipaddrWins;
|
|
RASIPADDR ipaddrWinsAlt;
|
|
//
|
|
// Framing
|
|
//
|
|
DWORD dwFrameSize;
|
|
DWORD dwfNetProtocols;
|
|
DWORD dwFramingProtocol;
|
|
//
|
|
// Scripting
|
|
//
|
|
CHAR szScript[ MAX_PATH ];
|
|
//
|
|
// AutoDial
|
|
//
|
|
CHAR szAutodialDll[ MAX_PATH ];
|
|
CHAR szAutodialFunc[ MAX_PATH ];
|
|
//
|
|
// Device
|
|
//
|
|
CHAR szDeviceType[ RAS_MaxDeviceType + 1 ];
|
|
CHAR szDeviceName[ RAS_MaxDeviceName + 1 ];
|
|
//
|
|
// X.25
|
|
//
|
|
CHAR szX25PadType[ RAS_MaxPadType + 1 ];
|
|
CHAR szX25Address[ RAS_MaxX25Address + 1 ];
|
|
CHAR szX25Facilities[ RAS_MaxFacilities + 1 ];
|
|
CHAR szX25UserData[ RAS_MaxUserData + 1 ];
|
|
DWORD dwChannels;
|
|
//
|
|
// Reserved
|
|
//
|
|
DWORD dwReserved1;
|
|
DWORD dwReserved2;
|
|
#if (WINVER >= 0x401)
|
|
//
|
|
// Multilink
|
|
//
|
|
DWORD dwSubEntries;
|
|
DWORD dwDialMode;
|
|
DWORD dwDialExtraPercent;
|
|
DWORD dwDialExtraSampleSeconds;
|
|
DWORD dwHangUpExtraPercent;
|
|
DWORD dwHangUpExtraSampleSeconds;
|
|
//
|
|
// Idle timeout
|
|
//
|
|
DWORD dwIdleDisconnectSeconds;
|
|
#endif
|
|
};
|
|
|
|
#define RASENTRYW struct tagRASENTRYW
|
|
RASENTRYW
|
|
{
|
|
DWORD dwSize;
|
|
DWORD dwfOptions;
|
|
//
|
|
// Location/phone number
|
|
//
|
|
DWORD dwCountryID;
|
|
DWORD dwCountryCode;
|
|
WCHAR szAreaCode[ RAS_MaxAreaCode + 1 ];
|
|
WCHAR szLocalPhoneNumber[ RAS_MaxPhoneNumber + 1 ];
|
|
DWORD dwAlternateOffset;
|
|
//
|
|
// PPP/Ip
|
|
//
|
|
RASIPADDR ipaddr;
|
|
RASIPADDR ipaddrDns;
|
|
RASIPADDR ipaddrDnsAlt;
|
|
RASIPADDR ipaddrWins;
|
|
RASIPADDR ipaddrWinsAlt;
|
|
//
|
|
// Framing
|
|
//
|
|
DWORD dwFrameSize;
|
|
DWORD dwfNetProtocols;
|
|
DWORD dwFramingProtocol;
|
|
//
|
|
// Scripting
|
|
//
|
|
WCHAR szScript[ MAX_PATH ];
|
|
//
|
|
// AutoDial
|
|
//
|
|
WCHAR szAutodialDll[ MAX_PATH ];
|
|
WCHAR szAutodialFunc[ MAX_PATH ];
|
|
//
|
|
// Device
|
|
//
|
|
WCHAR szDeviceType[ RAS_MaxDeviceType + 1 ];
|
|
WCHAR szDeviceName[ RAS_MaxDeviceName + 1 ];
|
|
//
|
|
// X.25
|
|
//
|
|
WCHAR szX25PadType[ RAS_MaxPadType + 1 ];
|
|
WCHAR szX25Address[ RAS_MaxX25Address + 1 ];
|
|
WCHAR szX25Facilities[ RAS_MaxFacilities + 1 ];
|
|
WCHAR szX25UserData[ RAS_MaxUserData + 1 ];
|
|
DWORD dwChannels;
|
|
//
|
|
// Reserved
|
|
//
|
|
DWORD dwReserved1;
|
|
DWORD dwReserved2;
|
|
#if (WINVER >= 0x401)
|
|
//
|
|
// Multilink
|
|
//
|
|
DWORD dwSubEntries;
|
|
DWORD dwDialMode;
|
|
DWORD dwDialExtraPercent;
|
|
DWORD dwDialExtraSampleSeconds;
|
|
DWORD dwHangUpExtraPercent;
|
|
DWORD dwHangUpExtraSampleSeconds;
|
|
//
|
|
// Idle timeout
|
|
//
|
|
DWORD dwIdleDisconnectSeconds;
|
|
#endif
|
|
};
|
|
|
|
#ifdef UNICODE
|
|
#define RASENTRY RASENTRYW
|
|
#else
|
|
#define RASENTRY RASENTRYA
|
|
#endif
|
|
|
|
#define LPRASENTRYW RASENTRYW*
|
|
#define LPRASENTRYA RASENTRYA*
|
|
#define LPRASENTRY RASENTRY*
|
|
|
|
/* RASENTRY 'dwfOptions' bit flags.
|
|
*/
|
|
#define RASEO_UseCountryAndAreaCodes 0x00000001
|
|
#define RASEO_SpecificIpAddr 0x00000002
|
|
#define RASEO_SpecificNameServers 0x00000004
|
|
#define RASEO_IpHeaderCompression 0x00000008
|
|
#define RASEO_RemoteDefaultGateway 0x00000010
|
|
#define RASEO_DisableLcpExtensions 0x00000020
|
|
#define RASEO_TerminalBeforeDial 0x00000040
|
|
#define RASEO_TerminalAfterDial 0x00000080
|
|
#define RASEO_ModemLights 0x00000100
|
|
#define RASEO_SwCompression 0x00000200
|
|
#define RASEO_RequireEncryptedPw 0x00000400
|
|
#define RASEO_RequireMsEncryptedPw 0x00000800
|
|
#define RASEO_RequireDataEncryption 0x00001000
|
|
#define RASEO_NetworkLogon 0x00002000
|
|
#define RASEO_UseLogonCredentials 0x00004000
|
|
#define RASEO_PromoteAlternates 0x00008000
|
|
#if (WINVER >= 0x401)
|
|
#define RASEO_SecureLocalFiles 0x00010000
|
|
#endif
|
|
|
|
/* RASENTRY 'dwProtocols' bit flags.
|
|
*/
|
|
#define RASNP_NetBEUI 0x00000001
|
|
#define RASNP_Ipx 0x00000002
|
|
#define RASNP_Ip 0x00000004
|
|
|
|
/* RASENTRY 'dwFramingProtocols' bit flags.
|
|
*/
|
|
#define RASFP_Ppp 0x00000001
|
|
#define RASFP_Slip 0x00000002
|
|
#define RASFP_Ras 0x00000004
|
|
|
|
/* RASENTRY 'szDeviceType' default strings.
|
|
*/
|
|
#define RASDT_Modem TEXT("modem")
|
|
#define RASDT_Isdn TEXT("isdn")
|
|
#define RASDT_X25 TEXT("x25")
|
|
|
|
/* Old AutoDial DLL function prototype.
|
|
**
|
|
** This prototype is documented for backward-compatibility
|
|
** purposes only. It is superceded by the RASADFUNCA
|
|
** and RASADFUNCW definitions below. DO NOT USE THIS
|
|
** PROTOTYPE IN NEW CODE. SUPPORT FOR IT MAY BE REMOVED
|
|
** IN FUTURE VERSIONS OF RAS.
|
|
*/
|
|
typedef BOOL (WINAPI *ORASADFUNC)( HWND, LPSTR, DWORD, LPDWORD );
|
|
|
|
#if (WINVER >= 0x401)
|
|
/* Flags for RasConnectionNotification().
|
|
*/
|
|
#define RASCN_Connection 0x00000001
|
|
#define RASCN_Disconnection 0x00000002
|
|
#define RASCN_BandwidthAdded 0x00000004
|
|
#define RASCN_BandwidthRemoved 0x00000008
|
|
|
|
/* RASENTRY 'dwDialMode' values.
|
|
*/
|
|
#define RASEDM_DialAll 1
|
|
#define RASEDM_DialAsNeeded 2
|
|
|
|
/* RASENTRY 'dwIdleDisconnectSeconds' constants.
|
|
*/
|
|
#define RASIDS_Disabled 0xffffffff
|
|
#define RASIDS_UseGlobalValue 0
|
|
|
|
/* AutoDial DLL function parameter block.
|
|
*/
|
|
#define RASADPARAMS struct tagRASADPARAMS
|
|
RASADPARAMS
|
|
{
|
|
DWORD dwSize;
|
|
HWND hwndOwner;
|
|
DWORD dwFlags;
|
|
LONG xDlg;
|
|
LONG yDlg;
|
|
};
|
|
|
|
#define LPRASADPARAMS RASADPARAMS*
|
|
|
|
/* AutoDial DLL function parameter block 'dwFlags.'
|
|
*/
|
|
#define RASADFLG_PositionDlg 0x00000001
|
|
|
|
/* Prototype AutoDial DLL function.
|
|
*/
|
|
typedef BOOL (WINAPI *RASADFUNCA)( LPSTR, LPSTR, LPRASADPARAMS, LPDWORD );
|
|
typedef BOOL (WINAPI *RASADFUNCW)( LPWSTR, LPWSTR, LPRASADPARAMS, LPDWORD );
|
|
|
|
#ifdef UNICODE
|
|
#define RASADFUNC RASADFUNCW
|
|
#else
|
|
#define RASADFUNC RASADFUNCA
|
|
#endif
|
|
|
|
/* A RAS phone book multilinked sub-entry.
|
|
*/
|
|
#define RASSUBENTRYA struct tagRASSUBENTRYA
|
|
RASSUBENTRYA
|
|
{
|
|
DWORD dwSize;
|
|
DWORD dwfFlags;
|
|
//
|
|
// Device
|
|
//
|
|
CHAR szDeviceType[ RAS_MaxDeviceType + 1 ];
|
|
CHAR szDeviceName[ RAS_MaxDeviceName + 1 ];
|
|
//
|
|
// Phone numbers
|
|
//
|
|
CHAR szLocalPhoneNumber[ RAS_MaxPhoneNumber + 1 ];
|
|
DWORD dwAlternateOffset;
|
|
};
|
|
|
|
#define RASSUBENTRYW struct tagRASSUBENTRYW
|
|
RASSUBENTRYW
|
|
{
|
|
DWORD dwSize;
|
|
DWORD dwfFlags;
|
|
//
|
|
// Device
|
|
//
|
|
WCHAR szDeviceType[ RAS_MaxDeviceType + 1 ];
|
|
WCHAR szDeviceName[ RAS_MaxDeviceName + 1 ];
|
|
//
|
|
// Phone numbers
|
|
//
|
|
WCHAR szLocalPhoneNumber[ RAS_MaxPhoneNumber + 1 ];
|
|
DWORD dwAlternateOffset;
|
|
};
|
|
|
|
#ifdef UNICODE
|
|
#define RASSUBENTRY RASSUBENTRYW
|
|
#else
|
|
#define RASSUBENTRY RASSUBENTRYA
|
|
#endif
|
|
|
|
#define LPRASSUBENTRYW RASSUBENTRYW*
|
|
#define LPRASSUBENTRYA RASSUBENTRYA*
|
|
#define LPRASSUBENTRY RASSUBENTRY*
|
|
|
|
/* Ras{Get,Set}Credentials structure. These calls
|
|
** supercede Ras{Get,Set}EntryDialParams.
|
|
*/
|
|
#define RASCREDENTIALSA struct tagRASCREDENTIALSA
|
|
RASCREDENTIALSA
|
|
{
|
|
DWORD dwSize;
|
|
DWORD dwMask;
|
|
CHAR szUserName[ UNLEN + 1 ];
|
|
CHAR szPassword[ PWLEN + 1 ];
|
|
CHAR szDomain[ DNLEN + 1 ];
|
|
};
|
|
|
|
#define RASCREDENTIALSW struct tagRASCREDENTIALSW
|
|
RASCREDENTIALSW
|
|
{
|
|
DWORD dwSize;
|
|
DWORD dwMask;
|
|
WCHAR szUserName[ UNLEN + 1 ];
|
|
WCHAR szPassword[ PWLEN + 1 ];
|
|
WCHAR szDomain[ DNLEN + 1 ];
|
|
};
|
|
|
|
#ifdef UNICODE
|
|
#define RASCREDENTIALS RASCREDENTIALSW
|
|
#else
|
|
#define RASCREDENTIALS RASCREDENTIALSA
|
|
#endif
|
|
|
|
#define LPRASCREDENTIALSW RASCREDENTIALSW*
|
|
#define LPRASCREDENTIALSA RASCREDENTIALSA*
|
|
#define LPRASCREDENTIALS RASCREDENTIALS*
|
|
|
|
/* RASCREDENTIALS 'dwMask' values.
|
|
*/
|
|
#define RASCM_UserName 0x00000001
|
|
#define RASCM_Password 0x00000002
|
|
#define RASCM_Domain 0x00000004
|
|
|
|
/* AutoDial address properties.
|
|
*/
|
|
#define RASAUTODIALENTRYA struct tagRASAUTODIALENTRYA
|
|
RASAUTODIALENTRYA
|
|
{
|
|
DWORD dwSize;
|
|
DWORD dwFlags;
|
|
DWORD dwDialingLocation;
|
|
CHAR szEntry[ RAS_MaxEntryName + 1];
|
|
};
|
|
|
|
#define RASAUTODIALENTRYW struct tagRASAUTODIALENTRYW
|
|
RASAUTODIALENTRYW
|
|
{
|
|
DWORD dwSize;
|
|
DWORD dwFlags;
|
|
DWORD dwDialingLocation;
|
|
WCHAR szEntry[ RAS_MaxEntryName + 1];
|
|
};
|
|
|
|
#ifdef UNICODE
|
|
#define RASAUTODIALENTRY RASAUTODIALENTRYW
|
|
#else
|
|
#define RASAUTODIALENTRY RASAUTODIALENTRYA
|
|
#endif
|
|
|
|
#define LPRASAUTODIALENTRYW RASAUTODIALENTRYW*
|
|
#define LPRASAUTODIALENTRYA RASAUTODIALENTRYA*
|
|
#define LPRASAUTODIALENTRY RASAUTODIALENTRY*
|
|
|
|
/* AutoDial control parameter values for
|
|
** Ras{Get,Set}AutodialParam.
|
|
*/
|
|
#define RASADP_DisableConnectionQuery 0
|
|
#define RASADP_LoginSessionDisable 1
|
|
#define RASADP_SavedAddressesLimit 2
|
|
#define RASADP_FailedConnectionTimeout 3
|
|
#define RASADP_ConnectionQueryTimeout 4
|
|
|
|
#endif // (WINVER >= 0x401)
|
|
|
|
|
|
/* External RAS API function prototypes.
|
|
*/
|
|
DWORD APIENTRY RasDialA( LPRASDIALEXTENSIONS, LPSTR, LPRASDIALPARAMSA, DWORD,
|
|
LPVOID, LPHRASCONN );
|
|
|
|
DWORD APIENTRY RasDialW( LPRASDIALEXTENSIONS, LPWSTR, LPRASDIALPARAMSW, DWORD,
|
|
LPVOID, LPHRASCONN );
|
|
|
|
DWORD APIENTRY RasEnumConnectionsA( LPRASCONNA, LPDWORD, LPDWORD );
|
|
|
|
DWORD APIENTRY RasEnumConnectionsW( LPRASCONNW, LPDWORD, LPDWORD );
|
|
|
|
DWORD APIENTRY RasEnumEntriesA( LPSTR, LPSTR, LPRASENTRYNAMEA, LPDWORD,
|
|
LPDWORD );
|
|
|
|
DWORD APIENTRY RasEnumEntriesW( LPWSTR, LPWSTR, LPRASENTRYNAMEW, LPDWORD,
|
|
LPDWORD );
|
|
|
|
DWORD APIENTRY RasGetConnectStatusA( HRASCONN, LPRASCONNSTATUSA );
|
|
|
|
DWORD APIENTRY RasGetConnectStatusW( HRASCONN, LPRASCONNSTATUSW );
|
|
|
|
DWORD APIENTRY RasGetErrorStringA( UINT, LPSTR, DWORD );
|
|
|
|
DWORD APIENTRY RasGetErrorStringW( UINT, LPWSTR, DWORD );
|
|
|
|
DWORD APIENTRY RasHangUpA( HRASCONN );
|
|
|
|
DWORD APIENTRY RasHangUpW( HRASCONN );
|
|
|
|
DWORD APIENTRY RasGetProjectionInfoA( HRASCONN, RASPROJECTION, LPVOID,
|
|
LPDWORD );
|
|
|
|
DWORD APIENTRY RasGetProjectionInfoW( HRASCONN, RASPROJECTION, LPVOID,
|
|
LPDWORD );
|
|
|
|
DWORD APIENTRY RasCreatePhonebookEntryA( HWND, LPSTR );
|
|
|
|
DWORD APIENTRY RasCreatePhonebookEntryW( HWND, LPWSTR );
|
|
|
|
DWORD APIENTRY RasEditPhonebookEntryA( HWND, LPSTR, LPSTR );
|
|
|
|
DWORD APIENTRY RasEditPhonebookEntryW( HWND, LPWSTR, LPWSTR );
|
|
|
|
DWORD APIENTRY RasSetEntryDialParamsA( LPSTR, LPRASDIALPARAMSA, BOOL );
|
|
|
|
DWORD APIENTRY RasSetEntryDialParamsW( LPWSTR, LPRASDIALPARAMSW, BOOL );
|
|
|
|
DWORD APIENTRY RasGetEntryDialParamsA( LPSTR, LPRASDIALPARAMSA, LPBOOL );
|
|
|
|
DWORD APIENTRY RasGetEntryDialParamsW( LPWSTR, LPRASDIALPARAMSW, LPBOOL );
|
|
|
|
DWORD APIENTRY RasEnumDevicesA( LPRASDEVINFOA, LPDWORD, LPDWORD );
|
|
|
|
DWORD APIENTRY RasEnumDevicesW( LPRASDEVINFOW, LPDWORD, LPDWORD );
|
|
|
|
DWORD APIENTRY RasGetCountryInfoA( LPRASCTRYINFOA, LPDWORD );
|
|
|
|
DWORD APIENTRY RasGetCountryInfoW( LPRASCTRYINFOW, LPDWORD );
|
|
|
|
DWORD APIENTRY RasGetEntryPropertiesA( LPSTR, LPSTR, LPRASENTRYA, LPDWORD, LPBYTE, LPDWORD );
|
|
|
|
DWORD APIENTRY RasGetEntryPropertiesW( LPWSTR, LPWSTR, LPRASENTRYW, LPDWORD, LPBYTE, LPDWORD );
|
|
|
|
DWORD APIENTRY RasSetEntryPropertiesA( LPSTR, LPSTR, LPRASENTRYA, DWORD, LPBYTE, DWORD );
|
|
|
|
DWORD APIENTRY RasSetEntryPropertiesW( LPWSTR, LPWSTR, LPRASENTRYW, DWORD, LPBYTE, DWORD );
|
|
|
|
DWORD APIENTRY RasRenameEntryA( LPSTR, LPSTR, LPSTR );
|
|
|
|
DWORD APIENTRY RasRenameEntryW( LPWSTR, LPWSTR, LPWSTR );
|
|
|
|
DWORD APIENTRY RasDeleteEntryA( LPSTR, LPSTR );
|
|
|
|
DWORD APIENTRY RasDeleteEntryW( LPWSTR, LPWSTR );
|
|
|
|
DWORD APIENTRY RasValidateEntryNameA( LPSTR, LPSTR );
|
|
|
|
DWORD APIENTRY RasValidateEntryNameW( LPWSTR, LPWSTR );
|
|
|
|
#if (WINVER >= 0x401)
|
|
DWORD APIENTRY RasGetSubEntryHandleA( HRASCONN, DWORD, LPHRASCONN );
|
|
|
|
DWORD APIENTRY RasGetSubEntryHandleW( HRASCONN, DWORD, LPHRASCONN );
|
|
|
|
DWORD APIENTRY RasGetCredentialsA( LPSTR, LPSTR, LPRASCREDENTIALSA);
|
|
|
|
DWORD APIENTRY RasGetCredentialsW( LPWSTR, LPWSTR, LPRASCREDENTIALSW );
|
|
|
|
DWORD APIENTRY RasSetCredentialsA( LPSTR, LPSTR, LPRASCREDENTIALSA, BOOL );
|
|
|
|
DWORD APIENTRY RasSetCredentialsW( LPWSTR, LPWSTR, LPRASCREDENTIALSW, BOOL );
|
|
|
|
DWORD APIENTRY RasConnectionNotificationA( HRASCONN, HANDLE, DWORD );
|
|
|
|
DWORD APIENTRY RasConnectionNotificationW( HRASCONN, HANDLE, DWORD );
|
|
|
|
DWORD APIENTRY RasGetSubEntryPropertiesA( LPSTR, LPSTR, DWORD,
|
|
LPRASSUBENTRYA, LPDWORD, LPBYTE, LPDWORD );
|
|
|
|
DWORD APIENTRY RasGetSubEntryPropertiesW( LPWSTR, LPWSTR, DWORD,
|
|
LPRASSUBENTRYW, LPDWORD, LPBYTE, LPDWORD );
|
|
|
|
DWORD APIENTRY RasSetSubEntryPropertiesA( LPSTR, LPSTR, DWORD,
|
|
LPRASSUBENTRYA, DWORD, LPBYTE, DWORD );
|
|
|
|
DWORD APIENTRY RasSetSubEntryPropertiesW( LPWSTR, LPWSTR, DWORD,
|
|
LPRASSUBENTRYW, DWORD, LPBYTE, DWORD );
|
|
|
|
DWORD APIENTRY RasDeleteSubEntryA( LPSTR, LPSTR, DWORD );
|
|
|
|
DWORD APIENTRY RasDeleteSubEntryW( LPWSTR, LPWSTR, DWORD );
|
|
|
|
DWORD APIENTRY RasGetAutodialAddressA( LPSTR, LPDWORD, LPRASAUTODIALENTRYA,
|
|
LPDWORD, LPDWORD );
|
|
|
|
DWORD APIENTRY RasGetAutodialAddressW( LPWSTR, LPDWORD, LPRASAUTODIALENTRYW,
|
|
LPDWORD, LPDWORD);
|
|
|
|
DWORD APIENTRY RasSetAutodialAddressA( LPSTR, DWORD, LPRASAUTODIALENTRYA,
|
|
DWORD, DWORD );
|
|
|
|
DWORD APIENTRY RasSetAutodialAddressW( LPWSTR, DWORD, LPRASAUTODIALENTRYW,
|
|
DWORD, DWORD );
|
|
|
|
DWORD APIENTRY RasEnumAutodialAddressesA( LPSTR *, LPDWORD, LPDWORD );
|
|
|
|
DWORD APIENTRY RasEnumAutodialAddressesW( LPWSTR *, LPDWORD, LPDWORD );
|
|
|
|
DWORD APIENTRY RasGetAutodialEnableA( DWORD, LPBOOL );
|
|
|
|
DWORD APIENTRY RasGetAutodialEnableW( DWORD, LPBOOL );
|
|
|
|
DWORD APIENTRY RasSetAutodialEnableA( DWORD, BOOL );
|
|
|
|
DWORD APIENTRY RasSetAutodialEnableW( DWORD, BOOL );
|
|
|
|
DWORD APIENTRY RasGetAutodialParamA( DWORD, LPVOID, LPDWORD );
|
|
|
|
DWORD APIENTRY RasGetAutodialParamW( DWORD, LPVOID, LPDWORD );
|
|
|
|
DWORD APIENTRY RasSetAutodialParamA( DWORD, LPVOID, DWORD );
|
|
|
|
DWORD APIENTRY RasSetAutodialParamW( DWORD, LPVOID, DWORD );
|
|
#endif
|
|
|
|
|
|
#ifdef UNICODE
|
|
#define RasDial RasDialW
|
|
#define RasEnumConnections RasEnumConnectionsW
|
|
#define RasEnumEntries RasEnumEntriesW
|
|
#define RasGetConnectStatus RasGetConnectStatusW
|
|
#define RasGetErrorString RasGetErrorStringW
|
|
#define RasHangUp RasHangUpW
|
|
#define RasGetProjectionInfo RasGetProjectionInfoW
|
|
#define RasCreatePhonebookEntry RasCreatePhonebookEntryW
|
|
#define RasEditPhonebookEntry RasEditPhonebookEntryW
|
|
#define RasSetEntryDialParams RasSetEntryDialParamsW
|
|
#define RasGetEntryDialParams RasGetEntryDialParamsW
|
|
#define RasEnumDevices RasEnumDevicesW
|
|
#define RasGetCountryInfo RasGetCountryInfoW
|
|
#define RasGetEntryProperties RasGetEntryPropertiesW
|
|
#define RasSetEntryProperties RasSetEntryPropertiesW
|
|
#define RasRenameEntry RasRenameEntryW
|
|
#define RasDeleteEntry RasDeleteEntryW
|
|
#define RasValidateEntryName RasValidateEntryNameW
|
|
#if (WINVER >= 0x401)
|
|
#define RasGetSubEntryHandle RasGetSubEntryHandleW
|
|
#define RasConnectionNotification RasConnectionNotificationW
|
|
#define RasGetSubEntryProperties RasGetSubEntryPropertiesW
|
|
#define RasSetSubEntryProperties RasSetSubEntryPropertiesW
|
|
#define RasDeleteSubEntry RasDeleteSubEntryW
|
|
#define RasGetCredentials RasGetCredentialsW
|
|
#define RasSetCredentials RasSetCredentialsW
|
|
#define RasGetAutodialAddress RasGetAutodialAddressW
|
|
#define RasSetAutodialAddress RasSetAutodialAddressW
|
|
#define RasEnumAutodialAddresses RasEnumAutodialAddressesW
|
|
#define RasGetAutodialEnable RasGetAutodialEnableW
|
|
#define RasSetAutodialEnable RasSetAutodialEnableW
|
|
#define RasGetAutodialParam RasGetAutodialParamW
|
|
#define RasSetAutodialParam RasSetAutodialParamW
|
|
#endif
|
|
#else
|
|
#define RasDial RasDialA
|
|
#define RasEnumConnections RasEnumConnectionsA
|
|
#define RasEnumEntries RasEnumEntriesA
|
|
#define RasGetConnectStatus RasGetConnectStatusA
|
|
#define RasGetErrorString RasGetErrorStringA
|
|
#define RasHangUp RasHangUpA
|
|
#define RasGetProjectionInfo RasGetProjectionInfoA
|
|
#define RasCreatePhonebookEntry RasCreatePhonebookEntryA
|
|
#define RasEditPhonebookEntry RasEditPhonebookEntryA
|
|
#define RasSetEntryDialParams RasSetEntryDialParamsA
|
|
#define RasGetEntryDialParams RasGetEntryDialParamsA
|
|
#define RasEnumDevices RasEnumDevicesA
|
|
#define RasGetCountryInfo RasGetCountryInfoA
|
|
#define RasGetEntryProperties RasGetEntryPropertiesA
|
|
#define RasSetEntryProperties RasSetEntryPropertiesA
|
|
#define RasRenameEntry RasRenameEntryA
|
|
#define RasDeleteEntry RasDeleteEntryA
|
|
#define RasValidateEntryName RasValidateEntryNameA
|
|
#if (WINVER >= 0x401)
|
|
#define RasGetSubEntryHandle RasGetSubEntryHandleA
|
|
#define RasConnectionNotification RasConnectionNotificationA
|
|
#define RasGetSubEntryProperties RasGetSubEntryPropertiesA
|
|
#define RasSetSubEntryProperties RasSetSubEntryPropertiesA
|
|
#define RasDeleteSubEntry RasDeleteSubEntryA
|
|
#define RasGetCredentials RasGetCredentialsA
|
|
#define RasSetCredentials RasSetCredentialsA
|
|
#define RasGetAutodialAddress RasGetAutodialAddressA
|
|
#define RasSetAutodialAddress RasSetAutodialAddressA
|
|
#define RasEnumAutodialAddresses RasEnumAutodialAddressesA
|
|
#define RasGetAutodialEnable RasGetAutodialEnableA
|
|
#define RasSetAutodialEnable RasSetAutodialEnableA
|
|
#define RasGetAutodialParam RasGetAutodialParamA
|
|
#define RasSetAutodialParam RasSetAutodialParamA
|
|
#endif
|
|
#endif
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#include <poppack.h>
|
|
|
|
#endif // _RAS_H_
|