Is there any simple way of finding the start address of the running program?
I thought about doing something like LoadLibrary to the current program...
I wonder if there is actually a nice way of doing that.
realcr.
base address would be GetModuleHandle method
start address (ie: entrypoint ) would be GetModuleHandle -> Process MZ/PE header, read entrypoint from that, and add it to the base..
Cool , great thanks evlncrn8 :U
realcr.