Tag: api hook
-
How do I hook API in Delphi
To create an API hook in Delphi, you can use the HookAPI() function from the JclHookExcept unit, which is part of the JEDI Code Library (JCL). Here is an example of how you might use this function: uses JclHookExcept; function MyHookProc(ExceptionInfo: PExceptionRecord): Boolean; begin // This is where you can add your own code to…