Also, ich versuche gerade mal Spasseshalber ein bissel alten C Code in PB zu porten. Allerdings will das ganze nicht so wie ich :P
Die Hauptprobleme sind folgende. Das ganze zeigt jetzt einfach mal den C Code.
Code: Alles auswählen
DWORD MyVar[8];
ReadProcessMemory (MyPID, (VOID *)0x00000000, MyVar, sizeof(MyVar), &read);
if (read != sizeof(MyVar))
{
puts ("Konnte Speicherwert nicht lesen :(");
return;
}
printf ("Speicherwert ist: %d\n", MyVar[6]);
Bei mir klappt das jedenfalls kein Stück. Jemand eine Idee ?

Gruß
Glow