24 lines
497 B
Plaintext
24 lines
497 B
Plaintext
|
|
|
|
|
|
|
|
#if 0
|
|
typedef struct _RASDIALPARAMS
|
|
{
|
|
DWORD dwSize;
|
|
TCHAR szEntryName[RAS_MaxEntryName + 1];
|
|
TCHAR szPhoneNumber[RAS_MaxPhoneNumber + 1];
|
|
TCHAR szCallbackNumber[RAS_MaxCallbackNumber + 1];
|
|
TCHAR szUserName[UNLEN + 1];
|
|
TCHAR szPassword[PWLEN + 1];
|
|
TCHAR szDomain[DNLEN + 1] ;
|
|
} RASDIALPARAMS;
|
|
|
|
|
|
inline
|
|
RasInterface::~RasInterface()
|
|
{
|
|
mRemoteAccessServerInterface.rasHangup(mhRasConn);
|
|
// if(mRasConnectionState.connected())mRemoteServerInterface.rasHangUp(mhRasConn);
|
|
}
|