C/C++
spellx.asc
Associated article: VToolsD for VxD Development
Tags: .NET C/C++
Published source code accompanying Charles Mirho's article which examines VToolsD, a C/C++ toolkit for writing virtual device drivers (VxDs), is designed as a replacement for Microsoft's DDK. Also see SPELLX.ZIP.
_VTOOLD FOR VXD DEVELOPMENT_ by Charles Mirho Listing One // SPELLX.C - main module for VxD SPELLX #define DEVICE_MAIN #include "spellx.h" #undef DEVICE_MAIN Declare_Virtual_Device(SPELLX) DefineControlHandler(DEVICE_INIT, OnDeviceInit); DefineControlHandler(SYS_VM_INIT, ...


