Source code of Windows XP (NT5)
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.
|
|
//+-------------------------------------------------------------------------
//
// Microsoft Windows
//
// Copyright (C) Microsoft Corporation, 1998 - 1998
//
// File: dynamlnk.cpp
//
//--------------------------------------------------------------------------
// DynamLnk.cpp : base class for DLLs which are loaded only when needed
#include "precomp.h"
#ifdef IP_OBEX
//#include "stdafx.h"
#include "DynamLnk.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__; #endif
DynamicDLL::DynamicDLL(LPCTSTR ptchLibraryName, LPCSTR* apchFunctionNames) : m_hLibrary( (HMODULE)-1 ), m_apfFunctions( NULL ), m_ptchLibraryName( ptchLibraryName ), m_apchFunctionNames( apchFunctionNames ), m_nNumFunctions( 0 ) { ASSERT( !IsBadStringPtr(m_ptchLibraryName,MAX_PATH) ); ASSERT( NULL != apchFunctionNames ); for (LPCSTR pchFunctionName = *apchFunctionNames; NULL != pchFunctionName; pchFunctionName = *(++apchFunctionNames) ) { m_nNumFunctions++; ASSERT( !IsBadStringPtrA(pchFunctionName,MAX_PATH) ); } }
DynamicDLL::~DynamicDLL() { if (NULL != m_apfFunctions) { delete m_apfFunctions; m_apfFunctions = NULL; } if ((HMODULE)-1 != m_hLibrary && NULL != m_hLibrary) { ASSERT( ::FreeLibrary( m_hLibrary ) ); m_hLibrary = NULL; } }
BOOL DynamicDLL::LoadFunctionPointers() { if ((HMODULE)-1 != m_hLibrary) return (NULL != m_hLibrary);
m_hLibrary = ::LoadLibrary( m_ptchLibraryName ); if (NULL == m_hLibrary) { // The library is not present
return FALSE; }
// let this throw an exception
m_apfFunctions = new FARPROC[m_nNumFunctions];
for (INT i = 0; i < m_nNumFunctions; i++) { m_apfFunctions[i] = ::GetProcAddress( m_hLibrary, m_apchFunctionNames[i] ); if ( NULL == m_apfFunctions[i] ) { // The library is present but does not have all of the entrypoints
ASSERT( ::FreeLibrary( m_hLibrary ) ); m_hLibrary = NULL; return FALSE; } }
return TRUE; }
FARPROC DynamicDLL::QueryFunctionPtr(INT i) const { if ( 0 > i || m_nNumFunctions <= i || NULL == m_apfFunctions || NULL == m_apfFunctions[i] ) { ASSERT( FALSE ); return NULL; } return m_apfFunctions[i]; }
#endif //ip_obex
|