zoukankan      html  css  js  c++  java
  • Hook GetMessage

    Hook GetMessage

    代码
    unit Unit1;

    interface

    uses
    Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
    StdCtrls;
    const
    WM_TestMessage
    = WM_USER + 2000;
    type
    TForm1
    = class(TForm)
    Button1: TButton;
    procedure FormCreate(Sender: TObject);
    procedure Button1Click(Sender: TObject);
    procedure FormDestroy(Sender: TObject);
    private
    { Private declarations }
    public
    { Public declarations }
    end;

    var
    Form1: TForm1;

    implementation

    {$R *.DFM}
    var
    HookHandle: HHOOK;

    function TestHookProc(Code: Integer; WParam: Longint;Msg:Longint): Longint;stdcall;
    begin
    if (Code = HC_ACTION) then
    if PMsg(Msg)^.Message = WM_TestMessage then
    begin
    showMessage(
    '已经截获该消息');
    end;
    Result :
    = CallNextHookEx(HookHandle, Code, WParam, Longint(@Msg));
    end;

    procedure TForm1.FormCreate(Sender: TObject);
    begin
    HookHandle:
    =SetWindowsHookEx(WH_GETMESSAGE,@TestHookProc,0,GetCurrentThreadID);
    end;

    procedure TForm1.FormDestroy(Sender: TObject);
    begin
    UnhookWindowsHookEx(HookHandle);
    end;

    procedure TForm1.Button1Click(Sender: TObject);
    begin
    PostMessage(self.Handle,WM_TestMessage,
    0,0);
    //SendMessage(self.Handle,WM_TestMessage,0,0);
    //这里用SendMessage是不行的,具体见相关资料
    end;

    end.

    Catch ESC Key

    代码
    var
    Form1: TForm1;
    HookHandle:HHook;
    const
    WM_TestMessage
    = WM_USER + 2000;

    implementation
    {$R *.dfm}

    function TestHookProc(Code:Integer;WParam:Longint;LParam:Longint):Longint;stdcall;
    begin
    if PMsg(LParam)^.Message = WM_KEYDOWN then
    if PMsg(LParam)^.wParam = VK_ESCAPE then
    begin
    Showmessage(
    'ESC Key Down!');
    Form1.Close;
    end;
    Result:
    =CallNextHookEx(HookHandle,Code,WParam,Longint(@LParam));
    end;

    procedure TForm1.FormCreate(Sender: TObject);
    begin
    HookHandle:
    =SetWindowsHookEx(WH_GETMESSAGE,TestHookProc,0,GetCurrentThreadID);
    end;

    procedure TForm1.FormDestroy(Sender: TObject);
    begin
    UnHookWindowsHookEx(HookHandle);
    end;

  • 相关阅读:
    做一个项目什么最重要(代码部分最多占40%)
    二叉树遍历:已知前序和中序,求后序
    [每日一题] OCP1z0-047 :2013-08-24 FLASHBACK—TABLE/PRIMARY KEY(FOREIGN KEY?)......98
    商业价值:苹果iTV,再一次改变世界?
    Nginx负载均衡简易方法
    Qt之设置窗口背景
    python mongodb ubuntu
    生物-生理-衰老:百科
    C#基础:线程之异步回调(委托)
    C#:同步调用、异步调用、异步回调
  • 原文地址:https://www.cnblogs.com/Jekhn/p/1912800.html
Copyright © 2011-2022 走看看