Quote:
引用第4楼湘D男孩于2008-04-11 14:57发表的 :
installhook函数原形是这样的:BOOL _declspec(dllexport)_stdcall installhook();
难道定义函数指针的时候要写成:BOOL ((_declspec(dllexport)_stdcall * inshook)()?
这样编译不过去啊?
我可没说要你这样改
BOOL (_stdcall * inshook)()这样错;
我是说你是不是函数没找到instkbhook=NULL,把调试结果写一下,大家都清楚了;
Quote:
instkbhook=(inshook)GetProcAddress(hinstDLL,"installhook");//call dll's function
这个"installhook"自己用vc自带的查看器dependence 看看dll有没这个是不是完全一样!注意:_ @