⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 uhookvars.pas

📁 键盘钩子程序及控件, C++ Builder 和DELPHI可用
💻 PAS
字号:
{*****************************************************************************
 * UnitName:  UHookVars
 * Version:   1.1
 * Created:   24/03/2005
 * Updated:   14/03/2006
 * Purpose:   WH_SHELL Hook Dll
 * Developer: BITLOGIC Software
 * Email:     development@bitlogic.co.uk
 * WebPage:   http://www.bitlogic.co.uk
 *****************************************************************************}

{*****************************************************************************
  See UShellHook.pas for more information.
*****************************************************************************}

unit UHookVars;

interface

uses Windows, Messages;

const
  MMFName = 'MMF_BITLOGIC_SHELLHOOK11';  { Unique Name for the MMF }
  HOOKLIBNAME = 'shellhook.dll';         { Name of the Hook DLL file }
  WM_SHELLHOOKMSG: DWORD = WM_USER+211;

type
 PMMFData = ^TMMFData;
 TMMFData = record
    NextHook : HHOOK;
    WinHandle : HWND;
    MsgToSend : DWORD;
 end;

implementation

end.

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -