Posted: Wed Oct 28, 2009 4:17 am Post subject: multilevel pointer in delphi
simple question: how to write to a multilevel pointer?
could it be like this:
Code:
//read
ReadProcessMemory(Pidhandle,Pointer(address7), @buffer2 ,4,bytesWritten); //read the 4 byte value stored at that location
address7 := PBYTE(address7 + $43);
ReadProcessMemory(Pidhandle,Pointer(address7), @buffer2 ,4,bytesWritten); //read the 4 byte value stored at that location
address7 := PBYTE(address7 + $55);
simple question: how to write to a multilevel pointer?
Read the value at the pointer, add offset, read the value at pointer, add the offset, blabla, add the offset, write the value to the address you got after adding the offset.
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum You cannot attach files in this forum You can download files in this forum