EXE call Dll里的函数,然后Dll里的函数callback EXE里的函数
EXE 代码
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
/*EXE代码 作者:exchen(SysProgram) 日期:2011年3月23日 */ void Msg(TCHAR *str) { MessageBox(0,str,"Caption",0); } void CTestDlgDlg::OnOK() { // TODO: Add extra validation here typedef void (*MY_FARPROC)(void (*MY_FARPROC)(TCHAR *str)); HMODULE hModule = LoadLibrary("C:\\TestDll\\Debug\\TestDll.dll"); MY_FARPROC FunAddress; if (hModule == NULL) { MessageBox("load dll error"); return; } FunAddress = (MY_FARPROC)GetProcAddress(hModule,"TestMsg"); FunAddress(Msg); //将Msg的地址传入dll } |
DLL 代码
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
/*DLL代码 作者:SysProgram 日期:2011年3月23日 */ #include <windows.h> void TestMsg(void (*MY_FARPROC)(TCHAR *str)) { MY_FARPROC("hehe"); //回调EXE里的函数 } BOOL WINAPI DllMain( HINSTANCE hinstDLL, // handle to the DLL module DWORD fdwReason, // reason for calling function LPVOID lpvReserved // reserved ) { if (fdwReason == DLL_PROCESS_ATTACH) { //......................... } } |
//导出函数
EXPORTS
TestMsg
转载请注明:exchen's blog » DLL 回调 EXE 里的函数