首页
社区
课程
招聘
hookdll没有用了?
发表于: 2004-11-19 20:31 4035

hookdll没有用了?

2004-11-19 20:31
4035
我在98下编了个用hookdll拦截按键的外挂输入法,结果在xp用不了,何故?

[培训]内核驱动高级班,冲击BAT一流互联网大厂工作,每周日13:00-18:00直播授课

收藏
免费 1
支持
分享
最新回复 (4)
雪    币: 16
能力值: (RANK:10 )
在线值:
发帖
回帖
粉丝
2
贴出你的hook的源代码,别人才好帮你分析.
2004-11-19 20:32
0
雪    币: 16
能力值: (RANK:10 )
在线值:
发帖
回帖
粉丝
3
SetWindowsHookEx
The SetWindowsHookEx function installs an application-defined hook procedure into a hook chain. You would install a hook procedure to monitor the system for certain types of events. These events are associated either with a specific thread or with all threads in the same desktop as the calling thread.

HHOOK SetWindowsHookEx(
  int idHook,        // hook type
  HOOKPROC lpfn,     // hook procedure
  HINSTANCE hMod,    // handle to application instance
  DWORD dwThreadId   // thread identifier
);
Requirements
  Windows NT/2000/XP: Included in Windows NT 3.1 and later.
  Windows 95/98/Me: Included in Windows 95 and later.
  Header: Declared in Winuser.h; include Windows.h.
  Library: Use User32.lib.
  Unicode: Implemented as Unicode and ANSI versions on Windows NT/2000/XP. Also supported by Microsoft Layer for Unicode.
2004-11-19 20:35
0
雪    币: 211
活跃值: (10)
能力值: ( LV2,RANK:10 )
在线值:
发帖
回帖
粉丝
4
2004-11-19 20:57
0
雪    币: 2319
活跃值: (565)
能力值: (RANK:300 )
在线值:
发帖
回帖
粉丝
5
Pascal ?  
2004-11-20 00:17
0
游客
登录 | 注册 方可回帖
返回
//