home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World 1999 October
/
PCWorld_1999-10_cd1.bin
/
Hardware
/
Drivers
/
APISpy
/
LogAPI.h
< prev
next >
Wrap
C/C++ Source or Header
|
1999-07-19
|
367b
|
19 lines
#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