Hex Editors ect

Blitz3D Forums/Blitz3D Programming/Hex Editors ect

Zach3D(Posted 2005) [#1]
Which functions do u use to write a value, at certain address to a program that is running, i thought it was the peek and poke functions but im not sure how to use them for a program already running.


jfk EO-11110(Posted 2005) [#2]
This cannot be done in Blitz by default. If you really want to do that, you need to use a Userlib:
You need to add the RTLMemoryMove2 function declaration, i guess to kernel.decls.

But - be careful, writing to memory randomly may seriously damage your system.


WolRon(Posted 2005) [#3]
Can you just use Banks for whatever it is that you want?


Who was John Galt?(Posted 2005) [#4]
skn3ac has a set of functions in the code archives that open the memory of another running process and read and write to it.