PROCMEM.H
上传用户:tzh4061
上传日期:2007-01-08
资源大小:309k
文件大小:0k
源码类别:

钩子与API截获

开发平台:

Visual C++

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