cpshellhookreg.pas

来自「键盘钩子程序及控件, C++ Builder 和DELPHI可用」· PAS 代码 · 共 33 行

PAS
33
字号
{*****************************************************************************
 * UnitName:  CPShellHookReg
 * Version:   1.1
 * Created:   24/03/2005
 * Updated:   14/03/2006
 * Purpose:   WH_SHELL Hook Component Registration Unit
 * Developer: BITLOGIC Software
 * Email:     development@bitlogic.co.uk
 * WebPage:   http://www.bitlogic.co.uk
 *****************************************************************************}

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

unit CPShellHookReg;

interface

uses classes, CPShellHook;

procedure Register;

implementation

procedure Register;
begin
 RegisterComponents('BITLOGIC', [TCPShellHook]);
end;

end.

⌨️ 快捷键说明

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