.NET
devmon.asc
Associated article: Examining the Windows 95 Layered File System
Tags: .NET
Published source code accompanying Mark Russinovich and Bryce Cogswell's article which examines the Windows 95 "layered" approach to file-system management. Our authors explore the file system, focusing on the the "vendor-supplied driver" (VSD) layer, presenting a program called "DEVMON" which monitors device drivers. See DEVMON.ZIP for the complete system.
_EXAMINING THE WINDOWS 95 LAYERED FILE SYSTEM_
by Mark Russinovich and Bryce Cogswell
Listing One
typedef struct DRP {
CHAR DRP_eyecatch_str[8]; // eye catcher string
ULONG DRP_LGN; // drivers load group
PVOID DRP_aer; // pointer to async event outine
PVOID DRP_...


