Topic created on: April 6, 2009 06:49 CDT by tinka.
Hi,
I'm writing a plugin for OllyDbg 1.10. Does anyone know if and how to add information on the register window ? I would like to add some of my own variables to that window if possible.
Could you hook the window procedure with GetWindowLong(GWL_WNDPROC) and corresponding setter? You will be required to find the window handle of the registers window.
Then you can replace the established register wndproc with your replacement, stashing the old pointer away for your replacement to chain the call along to. Your intervening replacement wndproc handles WM_PAINT, WM_SIZE, whatever it is you need for functionality.
Does that address your question?
Note: Registration is required to post to the forums.