Thread: ReadProcessMemory()

  1. #1
    Registered User Josh Kasten's Avatar
    Join Date
    Jul 2002
    Posts
    109

    Question ReadProcessMemory()

    Is there something else like ReadProcessMemory() because ReadProcessMemory() can't access all of the process memory?
    int a; don't make a program without it.

  2. #2
    Registered User
    Join Date
    Feb 2003
    Posts
    76
    Which process? Your process? Some other process? Keep in mind that it is extremely unlikely for an application to use up all of its 2GB memory space (which I assume you mean by "all of the process memory"). Memory is not readable or writeable unless it's allocated. Sometimes you can use ReadProcessMemory to check the readability of a section of another process's memory.

  3. #3
    Registered User Josh Kasten's Avatar
    Join Date
    Jul 2002
    Posts
    109
    Thanks got it now
    int a; don't make a program without it.

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. Help with ReadProcessMemory function
    By MattZimmerer in forum C Programming
    Replies: 16
    Last Post: 10-30-2008, 09:21 PM
  2. ReadProcessMemory Error
    By Scarvenger in forum Windows Programming
    Replies: 10
    Last Post: 05-28-2008, 04:47 PM
  3. ReadProcessMemory
    By brietje698 in forum C++ Programming
    Replies: 2
    Last Post: 10-14-2007, 07:37 AM
  4. ReadProcessMemory() help
    By Anddos in forum C++ Programming
    Replies: 7
    Last Post: 08-08-2006, 10:55 AM
  5. ReadProcessMemory();
    By kennny2004 in forum C++ Programming
    Replies: 12
    Last Post: 07-10-2006, 10:09 PM