JunkBox_Win_Lib 1.5.3
Loading...
Searching...
No Matches
DLLModule Class Reference

#include <WinDLLTool.h>

Public Member Functions

 DLLModule (LPCTSTR fname, int n)
 
 DLLModule ()
 
virtual ~DLLModule ()
 
void init (LPCTSTR fname, int n)
 
void free ()
 
char * get_info (int n=0)
 
BOOL set_funcname (LPCTSTR fname, int n)
 
BOOL get_module_info (tList *lp)
 
void * get_funcptr (int n)
 

Public Attributes

int status
 
int fnum
 
char * title
 
CString dllname
 
CString filename
 
CString funcname
 
HMODULE hmod
 

Protected Attributes

FUNC_STRING pgetinfo
 
void ** pfunc
 

Friends

class DLLModuleTBL
 

Detailed Description

Definition at line 53 of file WinDLLTool.h.

Constructor & Destructor Documentation

◆ DLLModule() [1/2]

DLLModule ( LPCTSTR fname,
int n )
inline

Definition at line 71 of file WinDLLTool.h.

71{ init(fname, n);}
void init(LPCTSTR fname, int n)

References DLLModule::init().

Here is the call graph for this function:

◆ DLLModule() [2/2]

DLLModule ( )
inline

Definition at line 72 of file WinDLLTool.h.

72{ init(NULL, 0);}

References DLLModule::init().

Here is the call graph for this function:

◆ ~DLLModule()

virtual ~DLLModule ( )
inlinevirtual

Definition at line 73 of file WinDLLTool.h.

73{ free();}

References DLLModule::free().

Here is the call graph for this function:

Member Function Documentation

◆ free()

void free ( )

機能:クラス中のデータを解放する.

Definition at line 53 of file WinDLLTool.cpp.

54{
55 status = 0;
56
57 hmod = NULL;
58 pgetinfo = NULL;
59 if (fnum>0 && pfunc!=NULL) ::free(pfunc);
60 fnum = 0;
61 pfunc = NULL;
62}
FUNC_STRING pgetinfo
Definition WinDLLTool.h:67

References DLLModule::fnum, DLLModule::free(), DLLModule::hmod, DLLModule::pfunc, DLLModule::pgetinfo, and DLLModule::status.

Referenced by DLLModule::free(), DLLModuleTBL::free(), DLLModule::get_module_info(), DLLModule::set_funcname(), and DLLModule::~DLLModule().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ get_funcptr()

void * get_funcptr ( int n)

機能:DLL中の n番目の関数へのポインタを得る.関数の型は外部で決める

引数:求める関数の番号.0 〜 fnum-1

戻り値:関数へのポインタ.

Definition at line 148 of file WinDLLTool.cpp.

149{
150 if (status<=0) return NULL;
151
152 if (n>=fnum) n = 0;
153 return pfunc[n];
154}

References DLLModule::fnum, DLLModule::pfunc, and DLLModule::status.

◆ get_info()

char * get_info ( int n = 0)
inline

Definition at line 77 of file WinDLLTool.h.

77{ if (pgetinfo==NULL) return NULL; return (*pgetinfo)(n);}

References DLLModule::pgetinfo.

◆ get_module_info()

BOOL get_module_info ( tList * lp)

機能:モジュールの一覧を格納したリストlp から,モジュール(一つだけ)の情報を獲得する. 関数名fname で示した関数 fname(0) からタイトル名を取得する. fname(1) 〜 fname(fnum-1) からは使用できる関数名を得る.使用できる関数の型は, 外部で決める.

引数:lp – モジュールの情報が入ったリストへのポインタ. lp->ldat.key : DLL名 lp->ldat.val : DLLファイル名(ディレクトリを含む) lp->ldat.ptr : モジュールハンドラ

戻り値:TRUE – 正常に情報を取得. FALSE – 情報取得関数から,正しい情報を読み取れない.

Definition at line 108 of file WinDLLTool.cpp.

109{
110 if (lp==NULL) return FALSE;
111 if (funcname==_T("")) return FALSE;
112
113 status = 0;
114 hmod = (HMODULE)(lp->ldat.ptr);
115 char* mbstr = ts2mbs(funcname);
116 pgetinfo = (FUNC_STRING)GetProcAddress(hmod, mbstr);
117 ::free(mbstr);
118 if (pgetinfo==NULL) return FALSE;
119
120 dllname = mbs2ts((char*)(lp->ldat.key.buf));
121 filename = mbs2ts((char*)(lp->ldat.val.buf));
122 title = (*pgetinfo)(0);
123
124 pfunc[0] = (void*)pgetinfo;
125 for (int i=1; i<fnum; i++) {
126 char* nfn = (*pgetinfo)(i);
127 void* pfn = (void*)GetProcAddress(hmod, nfn);
128 pfunc[i] = pfn;
129 //if (pfn==NULL) {
130 // status = -1;
131 // return FALSE;
132 //}
133 }
134
135 status = 1;
136 return TRUE;
137}
char * ts2mbs(LPCTSTR str)
Definition WinTools.h:57
CString mbs2ts(char *str)
Definition WinTools.cpp:79
char *(* FUNC_STRING)(int)
Definition WinDLLTool.h:47

References DLLModule::dllname, DLLModule::filename, DLLModule::fnum, DLLModule::free(), DLLModule::funcname, DLLModule::hmod, jbxwl::mbs2ts(), DLLModule::pfunc, DLLModule::pgetinfo, DLLModule::status, DLLModule::title, and jbxwl::ts2mbs().

Referenced by DLLModuleTBL::make_module_tbl().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ init()

void init ( LPCTSTR fname,
int n )

機能:クラスの初期化.fnameに NULL または nに 0以下を指定した場合は set_funcname() で改めて指定しなければならない.

引数:fname – 読み込むDLL中の情報取得関数の名前 n – 読み込むDLL中の使用できる関数の数

Definition at line 30 of file WinDLLTool.cpp.

31{
32 status = 0;
33 fnum = n;
34
35 title = NULL;
36 dllname = _T("");
37 filename = _T("");
38
39 if (fname!=NULL) funcname = fname;
40 else funcname = _T("");
41
42 hmod = NULL;
43 pgetinfo = NULL;
44 pfunc = NULL;
45 if (fnum>0) pfunc = (void**)malloc(sizeof(void*)*fnum);
46}

References DLLModule::dllname, DLLModule::filename, DLLModule::fnum, DLLModule::funcname, DLLModule::hmod, DLLModule::pfunc, DLLModule::pgetinfo, DLLModule::status, and DLLModule::title.

Referenced by DLLModule::DLLModule(), and DLLModule::DLLModule().

Here is the caller graph for this function:

◆ set_funcname()

BOOL set_funcname ( LPCTSTR fname,
int n )

機能:DLL中の情報取得関数の名前と,使用できる関数の数を指定する. fnameに NULL または nに 0以下を指定した場合,改めて指定しなければならない.

引数:fname – 読み込むDLL中の情報取得関数の名前 n – 読み込むDLL中の使用できる関数の数

戻り値:TRUE – 指定は完了した. FALSE – 指定は完了していない.続行は保障されない.

Definition at line 76 of file WinDLLTool.cpp.

77{
78 if (fname!=NULL) funcname = fname;
79 else funcname = _T("");
80
81 if (fnum>0 && pfunc!=NULL) ::free(pfunc);
82 pfunc = NULL;
83
84 fnum = n;
85 if (fnum>0) pfunc = (void**)malloc(sizeof(void*)*fnum);
86
87 if (fname==NULL || n<=0) return FALSE;
88 return TRUE;
89}

References DLLModule::fnum, DLLModule::free(), DLLModule::funcname, and DLLModule::pfunc.

Here is the call graph for this function:

Friends And Related Symbol Documentation

◆ DLLModuleTBL

friend class DLLModuleTBL
friend

Definition at line 83 of file WinDLLTool.h.

Member Data Documentation

◆ dllname

CString dllname

Definition at line 60 of file WinDLLTool.h.

Referenced by DLLModule::get_module_info(), and DLLModule::init().

◆ filename

CString filename

Definition at line 61 of file WinDLLTool.h.

Referenced by DLLModule::get_module_info(), and DLLModule::init().

◆ fnum

◆ funcname

CString funcname

◆ hmod

HMODULE hmod

Definition at line 64 of file WinDLLTool.h.

Referenced by DLLModule::free(), DLLModule::get_module_info(), and DLLModule::init().

◆ pfunc

◆ pgetinfo

FUNC_STRING pgetinfo
protected

◆ status

int status

◆ title

char* title

Definition at line 59 of file WinDLLTool.h.

Referenced by DLLModule::get_module_info(), and DLLModule::init().


The documentation for this class was generated from the following files: