¡@

Home 

c++ Programming Glossary: hooking

Combing an External Event Loop with Qt's

http://stackoverflow.com/questions/1051333/combing-an-external-event-loop-with-qts

loop subclass that handles the protocol's events while hooking into the Qt application at the same time. My research has lead..

Hooking DirectX EndScene from an injected DLL

http://stackoverflow.com/questions/1994676/hooking-directx-endscene-from-an-injected-dll

every system. Hooking Direct3DCreate9 to get the D3D9 then hooking D3D9 CreateDevice to get the device pointer and then hooking.. D3D9 CreateDevice to get the device pointer and then hooking Device EndScene through the virtual table. Downside The DLL.. Then getting the EndScene offset from this device and hooking it resulting in a hook for the device which is used by the game...

API Hook on a COM object function?

http://stackoverflow.com/questions/3692836/api-hook-on-a-com-object-function

opinions on how safe it is. I've been playing with API hooking a lot lately and I'm already using it to hook a few functions.. any reason I should NOT do this I've never heard of API hooking used to hook COM object functions. Are there circumstances it.. it wouldn't work Is it dangerous Any more than regular API hooking at least The relevant code follows. I'm using MinHook a minimalistic..

Disable CONTROL + ALT + DELETE and Windows(win) Key in Windows 7 using Win32 application

http://stackoverflow.com/questions/4529577/disable-control-alt-delete-and-windowswin-key-in-windows-7-using-win32-app

from other keys specifically to prevent programs from hooking the sequence and spoofing a login prompt. You aren't going to..

Blocking socket returns EAGAIN

http://stackoverflow.com/questions/735249/blocking-socket-returns-eagain

Function hooking in C++?

http://stackoverflow.com/questions/7743771/function-hooking-in-c

hooking in C With hooking I mean the ability to non intrusively override.. hooking in C With hooking I mean the ability to non intrusively override the behavior.. in a try catch block can be ab used for the purpose of hooking My questions are IMO this is such an incredibly useful feature..

How can I hook Windows functions in C/C++?

http://stackoverflow.com/questions/873658/how-can-i-hook-windows-functions-in-c-c

it's perfect for this sort of stuff. For system wide hooking read this article from MSDN. First create a DLL which handles.. this article from MSDN. First create a DLL which handles hooking the functions. This example below hooks the socket send and..

How can I intercept all key events, including ctrl+alt+del and ctrl+tab?

http://stackoverflow.com/questions/886076/how-can-i-intercept-all-key-events-including-ctrlaltdel-and-ctrltab

the system is designed to prevent an application from hooking these key combinations. Can you give me direction to writing..

Delphi problems converting VirtualProtect EAT hook routines from C to Delphi

http://stackoverflow.com/questions/9484319/delphi-problems-converting-virtualprotect-eat-hook-routines-from-c-to-delphi

came from CHook forum posting this code which does EAT hooking #include Windows.h #include Psapi.h #include string #if PSAPI_VERSION..