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.h
//
//--------------------------------------------------------------------------
// DynamLnk.h : Base class for DLLs which are loaded only when needed
#ifndef __DYNAMLNK_H_INCLUDED__
#define __DYNAMLNK_H_INCLUDED__
#if _MSC_VER >= 1000 // VC 5.0 or later
#pragma once
#endif
class DynamicDLL { public: // These strings must remain unchanged until the FileServiceProvider is released
DynamicDLL(LPCTSTR ptchLibraryName, LPCSTR* apchFunctionNames); virtual ~DynamicDLL();
BOOL LoadFunctionPointers();
FARPROC QueryFunctionPtr(INT i) const; inline FARPROC operator[] (INT i) const { return QueryFunctionPtr(i); }
private: HMODULE m_hLibrary; FARPROC* m_apfFunctions; LPCTSTR m_ptchLibraryName; LPCSTR* m_apchFunctionNames; INT m_nNumFunctions; };
#endif // ~__DYNAMLNK_H_INCLUDED__
|