00001 #ifndef __CHM_DLL_CLASS_H__
00002 #define __CHM_DLL_CLASS_H__
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021 #include <CHM/CHMminimumInclude.h>
00022 #include <CHM/CHMstring.h>
00023
00024 class CHMdll
00025 {
00026 public:
00027 CHMdll();
00028 virtual ~CHMdll();
00029
00030 void loadLibrary(const CHMstring& DllFileName, CHMboolean IsOwner=true);
00031
00032 void freeLibrary();
00033
00034 void* getProcAddress(const char* ProcName);
00035
00036 CHMstring libraryName() const;
00037
00038 private:
00039 CHMdllHandle DllHandle;
00040 CHMdll& operator=(const CHMdll& Orig);
00041 CHMdll(const CHMdll& Orig);
00042 };
00043
00044 #endif // end of defensive include