home *** CD-ROM | disk | FTP | other *** search
- #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
-