Daily Archives: January 25, 2011

And C?

The inventor of C programming language: Dennis Ritchie. We owe so much to him Home page http://cm.bell-labs.com/cm/cs/who/dmr/

Windows Hooks

SetWindowsHookEx( )  this method allows a function to be added in the hook chain for particular events. For example: WH_CALLWNDPROC WH_KEYBOARD WH_CALLWNDPROCRET etc. So if we want to have a user defined function to be called for a certain windows event we can install a hook and then write our own procedure to handle the… Read More »