爱
爱提
Unregistered / Unconfirmed
GUEST, unregistred user!
function KeyboardHookHandler(iCode:Integer;WParam:WPARAM;lParam:LPARAM):LRESULT;stdcall;export;<br>begin<br> Result :=0;<br> if iCode <0 then<br> begin<br> Result :=CallNextHookEx(hNextHookProc,iCode,wParam,lParam);<br> Exit;<br> end;<br> if wParam=40004 then<br> showmessage('stop');<br>end;<br><br>这些是我设计的一个钩子函数,请问我那个地方错了。<br>我要扑捉消息队列中id为40004的一个消息,就是超级解霸发出的‘step’消息<br>