The ReadProcessMemory function reads memory in a specified process. The entire area to be read must be accessible, or the operation fails.
BOOL ReadProcessMemory(
HANDLE hProcess, |
// handle of the process whose memory is read |
LPCVOID lpBaseAddress, |
// address to start reading |
LPVOID lpBuffer, |
// address of buffer to place read data |
DWORD nSize, |
// number of bytes to read |
LPDWORD lpNumberOfBytesRead |
// address of number of bytes read |
); |
If the function succeeds, the return value is nonzero.
If the function fails, the return value is zero. To get extended error information, call GetLastError.
The function fails if the requested read operation crosses into an area of the process that is inaccessible.
ReadProcessMemory copies the data in the specified address range from the address space of the specified process into the specified buffer of the current process. Any process that has a handle with PROCESS_VM_READ access can call the function. The process whose address space is read is typically, but not necessarily, being debugged.
The entire area to be read must be accessible. If it is not, the function fails as noted previously.
file: /Techref/os/win/api/win32/func/src/f71_15.htm, 3KB, , updated: 2000/4/7 11:19, local time: 2024/11/5 00:36,
3.147.81.186:LOG IN ©2024 PLEASE DON'T RIP! THIS SITE CLOSES OCT 28, 2024 SO LONG AND THANKS FOR ALL THE FISH!
|
©2024 These pages are served without commercial sponsorship. (No popup ads, etc...).Bandwidth abuse increases hosting cost forcing sponsorship or shutdown. This server aggressively defends against automated copying for any reason including offline viewing, duplication, etc... Please respect this requirement and DO NOT RIP THIS SITE. Questions? <A HREF="http://linistepper.com/techref/os/win/api/win32/func/src/f71_15.htm"> ReadProcessMemory</A> |
Did you find what you needed? |