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

钩子与API截获

开发平台:

Visual C++

  1. #ifndef LOGAPI_H
  2. #define LOGAPI_H
  3. #define MAX_LOG_ENTRIES 1024
  4. #define MAX_API_LEN 250
  5. struct tagLogEntry
  6. {
  7.   DWORD dwProcessId;
  8.   DWORD dwReturnValue;
  9.   PVOID pvOriginAddress;
  10.   char szAPIName[MAX_API_LEN + 1];
  11. };
  12. bool AddLogEntry(DWORD dwProcessId, PSTR pszAPIName, DWORD dwReturnValue, PVOID pvOriginAddress);
  13. extern HANDLE hMailslot;
  14. #endif