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.

31 lines
601 B

  1. /*
  2. *
  3. * memory.h
  4. *
  5. * Routines for reading/writing process memory.
  6. *
  7. */
  8. #ifndef __MEMORY_H__
  9. #define __MEMORY_H__
  10. BOOL
  11. ReadMemory(
  12. IN PNTSD_EXTENSION_APIS pExtApis,
  13. IN HANDLE hProcess,
  14. IN DWORD_PTR Address,
  15. IN OUT void * pBuffer,
  16. IN DWORD BufferSize
  17. );
  18. BOOL
  19. ReadMemory(
  20. IN PNTSD_EXTENSION_APIS pExtApis,
  21. IN HANDLE hProcess,
  22. IN char * pszAddress,
  23. IN OUT void * pBuffer,
  24. IN DWORD BufferSize
  25. );
  26. #endif
  27.