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;

  • 相关阅读:
    了解Web2.0必订阅之十大Blog[个人推荐]
    [J2ME Q&A]Target port denied to untrusted applications问题回应
    2005年Csdn十大最热门BLog作者排名第一?
    J2me流媒体技术实现讨论[1]
    液氮
    微分、差分和变分的概念
    Python mutable vs immutable (不可变对象 vs 可变对象)
    异戊烷
    免疫组化
    [导入]java escape unescape
  • 原文地址:https://www.cnblogs.com/Jekhn/p/1912800.html
Copyright © 2011-2022 走看看