Thread: ReadProcessMemory looping help

Threaded View

Previous Post Previous Post   Next Post Next Post
  1. #1
    Registered User
    Join Date
    Nov 2002
    Posts
    319

    ReadProcessMemory looping help

    i am trying to learn how you loop and increment the address to scan without missing any address
    everything up until this point is ok and its a valid handle...

    HANDLE ScanProc = OpenProcess(PROCESS_ALL_ACCESS,true,pe32.th32Proce ssID);
    GetSystemInfo(&si);
    LPVOID Buffer;
    DWORD Read;
    LPVOID Address
    ReadProcessMemory(ScanProc,si.lpMinimumApplication Address,Buffer,500,&Read);


    i know you have to loop until you reach si.lpMinimumApplicationAddress but i am stuck on the part where you increment the address to scan ...
    thanks if you can help
    Last edited by Anddos; 10-16-2009 at 01:12 AM.

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. wierd looping effect after exporting 3ds to .x annimation
    By Anddos in forum Game Programming
    Replies: 3
    Last Post: 01-06-2009, 01:43 PM
  2. problems with prototype function looping
    By dezz101 in forum C Programming
    Replies: 5
    Last Post: 04-29-2008, 06:03 AM
  3. looping went berserk
    By miryellis in forum C Programming
    Replies: 7
    Last Post: 09-21-2004, 01:59 PM
  4. Looping questions
    By Peyote in forum C++ Programming
    Replies: 3
    Last Post: 09-15-2003, 11:01 PM
  5. ReadProcessMemory()
    By Josh Kasten in forum Windows Programming
    Replies: 2
    Last Post: 06-19-2003, 12:45 AM