Вопрос

I'm looking for Delphi samples, but I can find only the C++ sample codes.

For example, how to define the below hook in Delphi?

DETOUR_TRAMPOLINE(int   WINAPI SetScrollInfoT(HWND, int, LPCSCROLLINFO, BOOL), SetScrollInfo)
Это было полезно?

Решение

If you only need to hook inside your own process the you can look at Detours library. I recently included it in my Cromis library with the consent of the author.

You can find it here. Just download the whole lib and use Cromis.Detours. It works on 32 and 64 bit and is very well written.

Другие советы

Thanks you all guys, finally i got this Ring3HookLibrary

Лицензировано под: CC-BY-SA с атрибуция
Не связан с StackOverflow
scroll top