├── .gitattributes ├── .gitignore ├── Bin └── .gitignore ├── Dcu └── .gitignore ├── Delphinus.Info.json ├── Delphinus.Install.json ├── Demos ├── BPL │ ├── Demo.dpr │ ├── Demo.dproj │ └── Demo.res ├── FMX │ ├── Demo.dpr │ ├── Demo.dproj │ ├── Demo.res │ ├── MainFrm.fmx │ └── MainFrm.pas ├── FPC │ ├── Demo.ico │ ├── Demo.lpi │ ├── Demo.lpr │ ├── Demo.res │ ├── MainFrm.lfm │ └── MainFrm.pas ├── IE │ ├── Dll.bdsproj │ ├── Dll.cfg │ ├── Dll.dpr │ ├── Dll.res │ ├── Exe.bdsproj │ ├── Exe.cfg │ ├── Exe.dpr │ ├── Exe.res │ ├── IE.bdsgroup │ ├── MainFrm.dfm │ └── MainFrm.pas ├── RTL │ ├── Demo.dpr │ ├── Demo.dproj │ └── Demo.res ├── VCL │ ├── Demo.bdsproj │ ├── Demo.cfg │ ├── Demo.dpr │ ├── Demo.dproj │ ├── Demo.res │ ├── MainFrm.dfm │ └── MainFrm.pas └── XP │ ├── Demo.dpr │ ├── Demo.dproj │ ├── Demo.res │ ├── MainFrm.dfm │ ├── MainFrm.pas │ └── XPCmpatibilityTweak.pas ├── Doc └── Logo.png ├── LICENSE ├── README.md ├── README.zh-CN.md └── Source ├── HookIntfs.pas ├── HookUtils.32.inc ├── HookUtils.64.inc └── HookUtils.pas /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delphilite/DelphiHookUtils/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delphilite/DelphiHookUtils/HEAD/.gitignore -------------------------------------------------------------------------------- /Bin/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Dcu/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Delphinus.Info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delphilite/DelphiHookUtils/HEAD/Delphinus.Info.json -------------------------------------------------------------------------------- /Delphinus.Install.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delphilite/DelphiHookUtils/HEAD/Delphinus.Install.json -------------------------------------------------------------------------------- /Demos/BPL/Demo.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delphilite/DelphiHookUtils/HEAD/Demos/BPL/Demo.dpr -------------------------------------------------------------------------------- /Demos/BPL/Demo.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delphilite/DelphiHookUtils/HEAD/Demos/BPL/Demo.dproj -------------------------------------------------------------------------------- /Demos/BPL/Demo.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delphilite/DelphiHookUtils/HEAD/Demos/BPL/Demo.res -------------------------------------------------------------------------------- /Demos/FMX/Demo.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delphilite/DelphiHookUtils/HEAD/Demos/FMX/Demo.dpr -------------------------------------------------------------------------------- /Demos/FMX/Demo.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delphilite/DelphiHookUtils/HEAD/Demos/FMX/Demo.dproj -------------------------------------------------------------------------------- /Demos/FMX/Demo.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delphilite/DelphiHookUtils/HEAD/Demos/FMX/Demo.res -------------------------------------------------------------------------------- /Demos/FMX/MainFrm.fmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delphilite/DelphiHookUtils/HEAD/Demos/FMX/MainFrm.fmx -------------------------------------------------------------------------------- /Demos/FMX/MainFrm.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delphilite/DelphiHookUtils/HEAD/Demos/FMX/MainFrm.pas -------------------------------------------------------------------------------- /Demos/FPC/Demo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delphilite/DelphiHookUtils/HEAD/Demos/FPC/Demo.ico -------------------------------------------------------------------------------- /Demos/FPC/Demo.lpi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delphilite/DelphiHookUtils/HEAD/Demos/FPC/Demo.lpi -------------------------------------------------------------------------------- /Demos/FPC/Demo.lpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delphilite/DelphiHookUtils/HEAD/Demos/FPC/Demo.lpr -------------------------------------------------------------------------------- /Demos/FPC/Demo.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delphilite/DelphiHookUtils/HEAD/Demos/FPC/Demo.res -------------------------------------------------------------------------------- /Demos/FPC/MainFrm.lfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delphilite/DelphiHookUtils/HEAD/Demos/FPC/MainFrm.lfm -------------------------------------------------------------------------------- /Demos/FPC/MainFrm.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delphilite/DelphiHookUtils/HEAD/Demos/FPC/MainFrm.pas -------------------------------------------------------------------------------- /Demos/IE/Dll.bdsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delphilite/DelphiHookUtils/HEAD/Demos/IE/Dll.bdsproj -------------------------------------------------------------------------------- /Demos/IE/Dll.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delphilite/DelphiHookUtils/HEAD/Demos/IE/Dll.cfg -------------------------------------------------------------------------------- /Demos/IE/Dll.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delphilite/DelphiHookUtils/HEAD/Demos/IE/Dll.dpr -------------------------------------------------------------------------------- /Demos/IE/Dll.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delphilite/DelphiHookUtils/HEAD/Demos/IE/Dll.res -------------------------------------------------------------------------------- /Demos/IE/Exe.bdsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delphilite/DelphiHookUtils/HEAD/Demos/IE/Exe.bdsproj -------------------------------------------------------------------------------- /Demos/IE/Exe.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delphilite/DelphiHookUtils/HEAD/Demos/IE/Exe.cfg -------------------------------------------------------------------------------- /Demos/IE/Exe.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delphilite/DelphiHookUtils/HEAD/Demos/IE/Exe.dpr -------------------------------------------------------------------------------- /Demos/IE/Exe.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delphilite/DelphiHookUtils/HEAD/Demos/IE/Exe.res -------------------------------------------------------------------------------- /Demos/IE/IE.bdsgroup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delphilite/DelphiHookUtils/HEAD/Demos/IE/IE.bdsgroup -------------------------------------------------------------------------------- /Demos/IE/MainFrm.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delphilite/DelphiHookUtils/HEAD/Demos/IE/MainFrm.dfm -------------------------------------------------------------------------------- /Demos/IE/MainFrm.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delphilite/DelphiHookUtils/HEAD/Demos/IE/MainFrm.pas -------------------------------------------------------------------------------- /Demos/RTL/Demo.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delphilite/DelphiHookUtils/HEAD/Demos/RTL/Demo.dpr -------------------------------------------------------------------------------- /Demos/RTL/Demo.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delphilite/DelphiHookUtils/HEAD/Demos/RTL/Demo.dproj -------------------------------------------------------------------------------- /Demos/RTL/Demo.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delphilite/DelphiHookUtils/HEAD/Demos/RTL/Demo.res -------------------------------------------------------------------------------- /Demos/VCL/Demo.bdsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delphilite/DelphiHookUtils/HEAD/Demos/VCL/Demo.bdsproj -------------------------------------------------------------------------------- /Demos/VCL/Demo.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delphilite/DelphiHookUtils/HEAD/Demos/VCL/Demo.cfg -------------------------------------------------------------------------------- /Demos/VCL/Demo.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delphilite/DelphiHookUtils/HEAD/Demos/VCL/Demo.dpr -------------------------------------------------------------------------------- /Demos/VCL/Demo.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delphilite/DelphiHookUtils/HEAD/Demos/VCL/Demo.dproj -------------------------------------------------------------------------------- /Demos/VCL/Demo.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delphilite/DelphiHookUtils/HEAD/Demos/VCL/Demo.res -------------------------------------------------------------------------------- /Demos/VCL/MainFrm.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delphilite/DelphiHookUtils/HEAD/Demos/VCL/MainFrm.dfm -------------------------------------------------------------------------------- /Demos/VCL/MainFrm.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delphilite/DelphiHookUtils/HEAD/Demos/VCL/MainFrm.pas -------------------------------------------------------------------------------- /Demos/XP/Demo.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delphilite/DelphiHookUtils/HEAD/Demos/XP/Demo.dpr -------------------------------------------------------------------------------- /Demos/XP/Demo.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delphilite/DelphiHookUtils/HEAD/Demos/XP/Demo.dproj -------------------------------------------------------------------------------- /Demos/XP/Demo.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delphilite/DelphiHookUtils/HEAD/Demos/XP/Demo.res -------------------------------------------------------------------------------- /Demos/XP/MainFrm.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delphilite/DelphiHookUtils/HEAD/Demos/XP/MainFrm.dfm -------------------------------------------------------------------------------- /Demos/XP/MainFrm.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delphilite/DelphiHookUtils/HEAD/Demos/XP/MainFrm.pas -------------------------------------------------------------------------------- /Demos/XP/XPCmpatibilityTweak.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delphilite/DelphiHookUtils/HEAD/Demos/XP/XPCmpatibilityTweak.pas -------------------------------------------------------------------------------- /Doc/Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delphilite/DelphiHookUtils/HEAD/Doc/Logo.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delphilite/DelphiHookUtils/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delphilite/DelphiHookUtils/HEAD/README.md -------------------------------------------------------------------------------- /README.zh-CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delphilite/DelphiHookUtils/HEAD/README.zh-CN.md -------------------------------------------------------------------------------- /Source/HookIntfs.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delphilite/DelphiHookUtils/HEAD/Source/HookIntfs.pas -------------------------------------------------------------------------------- /Source/HookUtils.32.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delphilite/DelphiHookUtils/HEAD/Source/HookUtils.32.inc -------------------------------------------------------------------------------- /Source/HookUtils.64.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delphilite/DelphiHookUtils/HEAD/Source/HookUtils.64.inc -------------------------------------------------------------------------------- /Source/HookUtils.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delphilite/DelphiHookUtils/HEAD/Source/HookUtils.pas --------------------------------------------------------------------------------