Code/Resource
Windows Develop
Linux-Unix program
Internet-Socket-Network
Web Server
Browser Client
Ftp Server
Ftp Client
Browser Plugins
Proxy Server
Email Server
Email Client
WEB Mail
Firewall-Security
Telnet Server
Telnet Client
ICQ-IM-Chat
Search Engine
Sniffer Package capture
Remote Control
xml-soap-webservice
P2P
WEB(ASP,PHP,...)
TCP/IP Stack
SNMP
Grid Computing
SilverLight
DNS
Cluster Service
Network Security
Communication-Mobile
Game Program
Editor
Multimedia program
Graph program
Compiler program
Compress-Decompress algrithms
Crypt_Decrypt algrithms
Mathimatics-Numerical algorithms
MultiLanguage
Disk/Storage
Java Develop
assembly language
Applications
Other systems
Database system
Embeded-SCM Develop
FlashMX/Flex
source in ebook
Delphi VCL
OS Develop
MiddleWare
MPI
MacOS develop
LabView
ELanguage
Software/Tools
E-Books
Artical/Document
APISpy32.h
Package: apispy32.zip [view]
Upload User: tzh4061
Upload Date: 2007-01-08
Package Size: 309k
Code Size: 1k
Category:
Hook api
Development Platform:
Visual C++
- #ifndef APISPY32_H
- #define APISPY32_H
- // Registry path of APISpy32 key
- #define APISPY32_REG_KEY "Software\Internals\APISpy32"
- // The amount of time (in milliseconds) to wait for a thread
- // to terminate.
- #define THREAD_EXIT_TIMEOUT 5000
- // The amount of time (in milliseconds) to wait before attempting to
- // reinject APISpyNT.dll into the address space of all running processes.
- #define DLL_INJECTION_TIMEOUT 500
- #define NUM_TOOLBAR_BUTTONS 5
- #define NUM_OLD_TOOLBAR_BUTTONS 8
- #define TOOLBARHEIGHT 28
- #define NUMCOLUMNS 4
- #define TOOLBAR_FLAT 0x800
- #define ID_TOOLBAR 1
- #define COLUMN_WIDTH1 90
- #define COLUMN_WIDTH2 350
- #define COLUMN_WIDTH3 90
- #define COLUMN_WIDTH4 90
- #define PACKVERSION(Major, Minor) MAKELONG(Minor, Major)
- struct tagSettings
- {
- DWORD dwLeft;
- DWORD dwTop;
- DWORD dwWidth;
- DWORD dwHeight;
- bool WindowOnTop;
- BOOL Maximized;
- DWORD dwLVColumnWidth[NUMCOLUMNS];
- }Settings;
- typedef struct
- {
- DWORD cbSize;
- DWORD dwMajorVersion;
- DWORD dwMinorVersion;
- DWORD dwBuildNumber;
- DWORD dwPlatformID;
- } DLLVERSIONINFO, *PDLLVERSIONINFO;
- typedef HRESULT (CALLBACK *DLLGETVERSIONPROC)(DLLVERSIONINFO *);
- typedef bool (*GETLOGPARAMETERS_PROC)(DWORD *pdwNumLogEntries, DWORD *pdwReadLogIndex, tagLogEntry **ppLogBuffer);
- typedef void (*SETCAPTUREEVENTSFLAG_PROC)(bool bNewValue);
- typedef void (*SETAPISPY32PROCESSID_PROC)(DWORD dwProcessId);
- typedef void (*ADVANCETONEXTLOGENTRY_PROC)();
- #endif