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
REGMON.H
Package: regmonsrc.zip [view]
Upload User: kevenhsn
Upload Date: 2007-01-03
Package Size: 251k
Code Size: 2k
Category:
Windows Kernel
Development Platform:
Visual C++
- //======================================================================
- //
- // REGMON.h - include file for VxD REGMON
- //
- // Copyright (C) 1996 Mark Russinovich and Bryce Cogswell
- //
- //======================================================================
- #include <vtoolsc.h>
- //----------------------------------------------------------------------
- // D E F I N E S
- //----------------------------------------------------------------------
- #define REGMON_Major 1
- #define REGMON_Minor 0
- #define REGMON_DeviceID UNDEFINED_DEVICE_ID
- #define REGMON_Init_Order UNDEFINED_INIT_ORDER
- //
- // Number of hash buckets
- //
- #define NUMHASH 0x100
- #define HASHOBJECT(_hkey) (((ULONG)_hkey)>>2)%NUMHASH
- //
- // Size of storage buffer in pages
- //
- #define STORESIZE (MAX_STORE/0x1000+1)
- //
- // Maximum path length
- //
- #define MAXPATHLEN 1024
- //
- // Sizes of various buffers
- //
- #define STRINGLEN 240
- #define DATASIZE 512
- #define NAMELEN 256
- #define PROCESSLEN 16
- #define BINARYLEN 8
- //
- // Maximum seperate filter components
- //
- #define MAXFILTERS 64
- //
- // Entries in VMM Win32 service table
- //
- #define VMMWIN32QUERYINFOKEY (0x1E * 2 )
- //----------------------------------------------------------------------
- // S T R U C T U R E S
- //----------------------------------------------------------------------
- //
- // Structure for our name hash table
- //
- typedef struct _nameentry {
- HKEY hkey;
- PCHAR FullName;
- struct _nameentry *Next;
- } HASH_ENTRY, *PHASH_ENTRY;
- //
- // Structure for keeping linked lists of output buffers
- //
- typedef struct _store {
- ULONG Len;
- struct _store *Next;
- char Data[ MAX_STORE ];
- } STORE_BUF, *PSTORE_BUF;