LogAPI.h
资源名称:apispy32.zip [点击查看]
上传用户:tzh4061
上传日期:2007-01-08
资源大小:309k
文件大小:0k
源码类别:
钩子与API截获
开发平台:
Visual C++
- #ifndef LOGAPI_H
- #define LOGAPI_H
- #define MAX_LOG_ENTRIES 1024
- #define MAX_API_LEN 250
- struct tagLogEntry
- {
- DWORD dwProcessId;
- DWORD dwReturnValue;
- PVOID pvOriginAddress;
- char szAPIName[MAX_API_LEN + 1];
- };
- bool AddLogEntry(DWORD dwProcessId, PSTR pszAPIName, DWORD dwReturnValue, PVOID pvOriginAddress);
- extern HANDLE hMailslot;
- #endif