在进程中读内存(50分)

  • 主题发起人 主题发起人 安达
  • 开始时间 开始时间

安达

Unregistered / Unconfirmed
GUEST, unregistred user!
请问ReadProcessMemory参数及其数据类型,谢了。
 
he operation fails. <br><br>BOOL ReadProcessMemory(<br><br>&nbsp; &nbsp; HANDLE hProcess, // handle of the process whose memory is read &nbsp;<br>&nbsp; &nbsp; LPCVOID lpBaseAddress, // address to start reading<br>&nbsp; &nbsp; LPVOID lpBuffer, // address of buffer to place read data<br>&nbsp; &nbsp; DWORD nSize, // number of bytes to read<br>&nbsp; &nbsp; LPDWORD lpNumberOfBytesRead // address of number of bytes read<br>&nbsp; &nbsp;); <br>&nbsp;<br><br>Parameters<br><br>hProcess<br><br>Identifies an open handle of a process whose memory is read. The handle must have PROCESS_VM_READ access to the process. <br><br>lpBaseAddress<br><br>Points to the base address in the specified process to be read. Before any data transfer occurs, the system verifies that all data in the base address and memory of the specified size is accessible for read access. If this is the case, the function proceeds; otherwise, the function fails. <br><br>lpBuffer<br><br>Points to a buffer that receives the contents from the address space of the specified process. <br><br>nSize<br><br>Specifies the requested number of bytes to read from the specified process. <br><br>lpNumberOfBytesRead<br><br>Points to the actual number of bytes transferred into the specified buffer. If lpNumberOfBytesRead is NULL, the parameter is ignored. <br><br>&nbsp;<br><br>Return Values<br><br>If the function succeeds, the return value is nonzero.<br>If the function fails, the return value is zero. To get extended error information, call GetLastError.<br>The function fails if the requested read operation crosses into an area of the process that is inaccessible. <br><br>Remarks<br><br>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. <br>The entire area to be read must be accessible. If it is not, the function fails as noted previously. <br><br>
 
很好,tseug!
 
后退
顶部