网站大量收购闲置独家精品文档,联系QQ:2885784924

SetWindowsHookEx和其回调函数的使用实例.doc

SetWindowsHookEx和其回调函数的使用实例.doc

  1. 1、本文档共10页,可阅读全部内容。
  2. 2、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
  3. 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载
  4. 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
SetWindowsHookEx和其回调函数的使用实例

在网上找了好久都没有找到消息hook的实例,下面是我的例子给大家分享一下 下面是dll中的代码: //我的经验,编译的时候会提示DllMain,已在DllMain.cpp中定义,把DllMain.cpp从源文件里删掉就好了 #include stdafx.h #includeWindows.h HHOOK hkey=NULL; HINSTANCE h_dll; #pragma data_seg(.MySec) //定义字段,段名.MySec HWND h_wnd=NULL; #pragma data_seg() #pragma comment(linker,/section:.MySec,RWS) BOOL WINAPI DllMain(HINSTANCE hinstDLL,DWORD fdwReason,LPVOID lpvReserved) { h_dll=hinstDLL; // MessageBox(0,运行dllman,,MB_OK); return TRUE; } LRESULT CALLBACK my_test(int nCode,WPARAM wParam,LPARAM iParam)// { /* if(nCode==HC_ACTION) { MessageBox(0,成功!!,标题,MB_OK); } else { MessageBox(0,失败!!,标题,MB_OK); } */ MessageBox(0,被截取,,MB_OK); UnhookWindowsHookEx(hkey); return 1; } void SetHook(HWND hwnd) { h_wnd = hwnd; // MessageBox(0,运行sethook,,MB_OK); hkey=SetWindowsHookEx(WH_KEYBOARD,my_test,h_dll,0); } //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// 下面是EXE的代码:有很多头文件是没用上的,我个人习惯都带着- -,虽然这不是好习惯 ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// #include stdafx.h #include windows.h #include sstream #include stdlib.h #include stdio.h #include tchar.h #include iostream #include string #include shlwapi.h #include shlobj.h #include wctype.h #include Winbase.h #include strsafe.h #include conio.h #include Psapi.h #include Tlhelp32.h #pragma comment (lib,PSAPI.LIB) #pragma comment (lib,shlwapi.lib) #pragma comment (lib,Kernel32.lib) using namespace std; typedef void (__cdecl * pfunc)(HWND); //定义函数指针类型 void main() { HINSTANCE hmod; pfunc sethook; hmod=LoadLibrary(c:\dll_hook.dll);//动态加载dll if(hmod!=NULL) { sethook=(pfunc)GetProcAddress(hmod,SetHook);//调用dll中的函数 sethook(NULL); } system(pause); } ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////

文档评论(0)

fds373ix + 关注
实名认证
内容提供者

该用户很懒,什么也没介绍

1亿VIP精品文档

相关文档