该用哪种类型的hook?(70分)

  • 主题发起人 主题发起人 根本不懂
  • 开始时间 开始时间

根本不懂

Unregistered / Unconfirmed
GUEST, unregistred user!
我要拦载wm_create和wm_destroy这两个消息,该用哪种类型的hook?
setwindowshookex(??????,myhook,hinstance,0),据说有15种hook类型,
都告诉我更好!
 
还没有人出手啊!急!!!
 
用WH_CALLWNDPROC钩子
 
function hook(icode:integer;wp:wparam;lp:lparam):lresult;stdcall;
var
msg:Teventmsg;
begin
if icode<0 then result:=callnexthookex(hhook,icode,wp,lp)
else
;begin
;msg:=peventmsg(lp)^;
;if msg.message=wm_create then
; showmessage('form create');
;end;
end;
;以上代码能捕获窗口WM—CREATE消息,但过后就出错误框,有时死机。帮我!
 
多人接受答案了。
 
后退
顶部