###User Defined Function###
_WinAPI_ReadProcessMemory

###Description###
Reads memory in a specified process

###Syntax###
#include <WinAPI.au3>
_WinAPI_ReadProcessMemory ( $hProcess, $pBaseAddress, $pBuffer, $iSize, ByRef $iRead )


###Parameters###
@@ParamTable@@
$hProcess
	Identifies an open handle of a process whose memory is read
$pBaseAddress
	Points to the base address in the specified process to be read
$pBuffer
	Points to a buffer that receives the contents from the address space
$iSize
	Specifies the requested number of bytes to read from the specified process
$iRead
	The actual number of bytes transferred into the specified buffer
@@End@@

###ReturnValue###
@@ReturnTable@@
Success:	True
Failure:	False, call <a href="_WinAPI_GetLastError.htm">_WinAPI_GetLastError()</a> to get extended error information
@@End@@


###Remarks###
None.


###Related###
_WinAPI_WriteProcessMemory


###See Also###
@@MsdnLink@@ ReadProcessMemory
