You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
144 lines
4.0 KiB
144 lines
4.0 KiB
//-----------------------------------------------------------------------------
|
|
// RNAAPI class
|
|
//
|
|
// This class provides a series of cover function for the RNAPH/RASAPI32 dlls
|
|
//
|
|
// Created 1-29-96 ChrisK
|
|
|
|
// ############################################################################
|
|
// INCLUDES
|
|
#include "pch.hpp"
|
|
//#include "ras.h"
|
|
#ifdef WIN16
|
|
#include <win16def.h>
|
|
#include <rasc.h>
|
|
#include <raserr.h>
|
|
#else
|
|
#include <ras.h>
|
|
#endif
|
|
#pragma pack (4)
|
|
//#if !defined(WIN16)
|
|
//#include <rnaph.h>
|
|
//#endif
|
|
#pragma pack ()
|
|
#include "rnaapi.h"
|
|
#include "debug.h"
|
|
|
|
// ############################################################################
|
|
// RNAAPI class
|
|
CRNAAPI::CRNAAPI()
|
|
{
|
|
#if defined WIN16
|
|
m_hInst = LoadLibrary ("RAS16IE.DLL");
|
|
m_hInst2 = NULL;
|
|
#else
|
|
m_hInst = LoadLibrary(TEXT("RASAPI32.DLL"));
|
|
|
|
if (FALSE == IsNT ())
|
|
{
|
|
//
|
|
// we only load RNAPH.DLL if it is not NT
|
|
// MKarki (5/4/97) - Fix for Bug #3378
|
|
//
|
|
m_hInst2 = LoadLibrary(TEXT("RNAPH.DLL"));
|
|
}
|
|
else
|
|
{
|
|
m_hInst2 = NULL;
|
|
}
|
|
#endif
|
|
m_fnRasEnumDeviecs = NULL;
|
|
m_fnRasValidateEntryName = NULL;
|
|
m_fnRasSetEntryProperties = NULL;
|
|
m_fnRasGetEntryProperties = NULL;
|
|
}
|
|
|
|
// ############################################################################
|
|
CRNAAPI::~CRNAAPI()
|
|
{
|
|
// Clean up
|
|
if (m_hInst) FreeLibrary(m_hInst);
|
|
if (m_hInst2) FreeLibrary(m_hInst2);
|
|
}
|
|
|
|
// ############################################################################
|
|
DWORD CRNAAPI::RasEnumDevices(LPRASDEVINFO lpRasDevInfo, LPDWORD lpcb,
|
|
LPDWORD lpcDevices)
|
|
{
|
|
DWORD dwRet = ERROR_DLL_NOT_FOUND;
|
|
|
|
// Look for the API if we haven't already found it
|
|
LoadApi("RasEnumDevices",(FARPROC*)&m_fnRasEnumDeviecs);
|
|
|
|
if (m_fnRasEnumDeviecs)
|
|
dwRet = (*m_fnRasEnumDeviecs) (lpRasDevInfo, lpcb, lpcDevices);
|
|
|
|
return dwRet;
|
|
}
|
|
|
|
// ############################################################################
|
|
BOOL CRNAAPI::LoadApi(LPSTR pszFName, FARPROC* pfnProc)
|
|
{
|
|
if (*pfnProc == NULL)
|
|
{
|
|
// Look for the entry point in the first DLL
|
|
if (m_hInst)
|
|
*pfnProc = GetProcAddress(m_hInst,pszFName);
|
|
|
|
// if that fails, look for the entry point in the second DLL
|
|
if (m_hInst2 && !(*pfnProc))
|
|
*pfnProc = GetProcAddress(m_hInst2,pszFName);
|
|
}
|
|
|
|
return (pfnProc != NULL);
|
|
}
|
|
|
|
// ############################################################################
|
|
DWORD CRNAAPI::RasValidateEntryName(LPTSTR lpszPhonebook,LPTSTR lpszEntry)
|
|
{
|
|
DWORD dwRet = ERROR_DLL_NOT_FOUND;
|
|
|
|
// Look for the API if we haven't already found it
|
|
LoadApi("RasValidateEntryName",(FARPROC*)&m_fnRasValidateEntryName);
|
|
|
|
if (m_fnRasValidateEntryName)
|
|
dwRet = (*m_fnRasValidateEntryName) (lpszPhonebook, lpszEntry);
|
|
|
|
return dwRet;
|
|
}
|
|
|
|
// ############################################################################
|
|
DWORD CRNAAPI::RasSetEntryProperties(LPTSTR lpszPhonebook, LPTSTR lpszEntry,
|
|
LPBYTE lpbEntryInfo, DWORD dwEntryInfoSize,
|
|
LPBYTE lpbDeviceInfo, DWORD dwDeviceInfoSize)
|
|
{
|
|
DWORD dwRet = ERROR_DLL_NOT_FOUND;
|
|
|
|
// Look for the API if we haven't already found it
|
|
LoadApi("RasSetEntryProperties",(FARPROC*)&m_fnRasSetEntryProperties);
|
|
|
|
if (m_fnRasSetEntryProperties)
|
|
dwRet = (*m_fnRasSetEntryProperties) (lpszPhonebook, lpszEntry,
|
|
lpbEntryInfo, dwEntryInfoSize,
|
|
lpbDeviceInfo, dwDeviceInfoSize);
|
|
|
|
return dwRet;
|
|
}
|
|
|
|
// ############################################################################
|
|
DWORD CRNAAPI::RasGetEntryProperties(LPTSTR lpszPhonebook, LPTSTR lpszEntry,
|
|
LPBYTE lpbEntryInfo, LPDWORD lpdwEntryInfoSize,
|
|
LPBYTE lpbDeviceInfo, LPDWORD lpdwDeviceInfoSize)
|
|
{
|
|
DWORD dwRet = ERROR_DLL_NOT_FOUND;
|
|
|
|
// Look for the API if we haven't already found it
|
|
LoadApi("RasGetEntryProperties",(FARPROC*)&m_fnRasGetEntryProperties);
|
|
|
|
if (m_fnRasGetEntryProperties)
|
|
dwRet = (*m_fnRasGetEntryProperties) (lpszPhonebook, lpszEntry,
|
|
lpbEntryInfo, lpdwEntryInfoSize,
|
|
lpbDeviceInfo, lpdwDeviceInfoSize);
|
|
|
|
return dwRet;
|
|
}
|