Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

32 lines
601 B

/*
*
* memory.h
*
* Routines for reading/writing process memory.
*
*/
#ifndef __MEMORY_H__
#define __MEMORY_H__
BOOL
ReadMemory(
IN PNTSD_EXTENSION_APIS pExtApis,
IN HANDLE hProcess,
IN DWORD_PTR Address,
IN OUT void * pBuffer,
IN DWORD BufferSize
);
BOOL
ReadMemory(
IN PNTSD_EXTENSION_APIS pExtApis,
IN HANDLE hProcess,
IN char * pszAddress,
IN OUT void * pBuffer,
IN DWORD BufferSize
);
#endif