Do you only Copy & Paste this?
You have no main function and you use the C++ output function cout and the C output function printf in the same project.
// åæä ëåúá ìëúåáú
while(1)
{
WriteProcessMemory(ProcessHandle ,(void*)EngineUpgrade_Addr ,(LPVOID)EngineUpgrade_Value ,EngineUpgrade_Size ,&EngineUpgrade_Sent);
Sleep(50);
}
return true;
}
///////////////////////////////////////
its compile but when the cmd(black screen) pop up its have a error on it that say i have to close it or check for problems=\ help plzz
// åæä ëåúá ìëúåáú
while(1)
{
WriteProcessMemory(ProcessHandle ,(void*)EngineUpgrade_Addr ,(LPVOID)EngineUpgrade_Value ,EngineUpgrade_Size ,&EngineUpgrade_Sent);
Sleep(50);
}
return true;
}
///////////////////////////////////////
its compile but when the cmd(black screen) pop up its have a error on it that say i have to close it or check for problems=\ help plzz
that cant work
you wrote int main;
main isnt a variable xD its a fuction
so int main(){
}
Probleme Visual Basic unter Vista64Bit mit ReadProcessMemory und WriteProcessMemory 04/24/2012 - .NET Languages - 2 Replies Hallo Ihrs
Ich hoffe ihr könnt mir vllt vieleicht weiterhelfen, ich befasse mich schon seit einigen Tagen mit ReadProcessMemory und WriteProcessMemory
aber irgendwie will das ganze nicht unter Vista 64 Bit nicht funktionieren. Nachfolgender Code tut zb den Puktestand in Solitaire auslesen und in einer Textbox anzeigen. (Ist ja nur ein Beispiel) unter XP funktioniert das ganze ohne Probleme, aber unter Vista bekomme ich immer den Wert 0 zurück. Mir ist klar das die Speicheradresse unter Vista...
Wie erlange ich die PID eines Prozesses für z.B. WriteProcessMemory 11/06/2008 - Coding Tutorials - 4 Replies An die, die noch nicht wissen, wie sie ein Handle eines Prozesses erlangen, folgt hier ein kleiner Beispielquelltext .
Beispielprogramm:
.386
.model flat, stdcall
option casemap :none
include windows.inc
include kernel32.inc
include user32.inc
Locking WriteProcessMemory with a TickBox 06/11/2007 - General Coding - 5 Replies This is the code for one of the buttons in my app:
Private Sub Command8_Click()
If Hooked = True Then
WriteProcessMemory ProcessHandle, &580316, 386, 2, 0&
End If
End Sub
The problem is the memory address that I write to resets itself after a while and I have to click the button again, is there anyway to lock the memory address that I write to? Or just have the code refresh itself at a set interval?
I would like to achieve this with a tick box if possible