home *** CD-ROM | disk | FTP | other *** search
/ PC World 1999 October / PCWorld_1999-10_cd1.bin / Hardware / Drivers / APISpy / PROCMEM.H < prev    next >
C/C++ Source or Header  |  1999-07-16  |  451b  |  18 lines

  1. /*************************************************************
  2. Module name: ProcMem.H
  3. Notices: Written 1995 Jeffrey Richter
  4. *************************************************************/
  5.  
  6. #ifndef PROCMEM_H
  7. #define PROCMEM_H
  8.  
  9. extern "C"
  10. {
  11.   PVOID AllocProcessMemory (HANDLE hProcess, DWORD dwNumBytes);
  12.   BOOL  FreeProcessMemory (HANDLE hProcess, PVOID pvMem);
  13. }
  14.  
  15. #endif
  16.  
  17. //////////////////////// End Of File /////////////////////////
  18.