/\/\1|<3 0 Posted December 15, 2004 hi i found this in my kernel32.dll : ReadProcessMemory and i want to use it but absolutly dont know how HELP!!! Mike Share this post Link to post Share on other sites
ezzetabi 3 Posted December 15, 2004 (edited) I am afraid that AutoIt can't handle that call. At least I not sure how detect the 'process handle' (what is that btw?) This is a pure translation of the call sintax... Maybe it helps. $hProcess = $lpBaseAddress = $lpBuffer = $nSize = $a = DllCall('kernel32','long','ReadProcessMemory','long',$hProcess,'int',$lpBaseAddress,'int',$lpBuffer,'long',$nSize) If @error Then MsgBox(0,'','Error') Else MsgBox(0,'',$a[0]) EndIf Edited December 15, 2004 by ezzetabi Share this post Link to post Share on other sites
/\/\1|<3 0 Posted December 16, 2004 big thanks didnt get it working because i just dont understand it (the variables) but i´m sure i´ll understand it in a few hours/days thanks for the answer Mike Share this post Link to post Share on other sites