Find WndProc in the app you are debugging... ( look for call to GetMessage, or PeekMessage ) there will be a switch/case block near by, check for WM_KEYDOWN, WM_CHAR, WM_Input...
example for WM_KEYDOWN ..; wParam will hold the virtual key code, (lParam & 0xffff) will be the scan code of the key pressed.
Also you can check for functions such as GetKeyState, GetAsyncKeyState, etc, and break there.
-Fyyre
Quote:
Originally Posted by n0ital
Hey all,
Is there an Olly plug-in that monitors keystrokes and displays mem location where they are originally stored?
tnx
|