VxD


VxD is the device driver model used in Microsoft Windows/386, the 386 enhanced mode of Windows 3.x, Windows 9x, and to some extent also by the Novell DOS 7, OpenDOS 7.01, and DR-DOS 7.02 multitasker. VxDs have access to the memory of the kernel and all running processes, as well as raw access to the hardware.

Design

The name "VxD" is an abbreviation for "virtual xxx driver", where "xxx" is some class of hardware device. It derives from the fact that most drivers had filenames of the form vxxxd.386 in Windows 3.x. Some examples are: vjoyd.386, vmm.386. VxDs usually have the filename extension .386 under Windows 3.x and .vxd under Windows 9x. VxDs written for Windows 3.x can be used under Windows 9x but not vice versa.

History

Prior to the advent of Windows, DOS applications would either communicate directly with the various pieces of hardware or go through a DOS device driver. As DOS was not multitasking, each application would have exclusive and complete control over the hardware while running. Though Windows applications don't often communicate directly with hardware, it was the only way for Windows drivers; and still is in the real and standard modes of Windows 3.x.
Windows/386 and onward allowed multiple DOS applications to execute concurrently by executing each within its own virtual machine. To share physical resources among these virtual machines, Microsoft introduced virtual device drivers. These drivers solved issues relating to conflicting usage of physical resources by intercepting calls to the hardware. Instead of a machine port representing an actual device, it would represent a "virtual" device, which could be managed by the operating system.

Obsolescence

Although Windows 98 introduced the Windows Driver Model, VxD device drivers can be used under Windows 98 and Windows Me. VxDs are not usable in Windows NT or its descendants. Starting with Windows 2000, Windows NT-based operating systems also use the Windows Driver Model, while Windows NT 4 and earlier versions must use drivers written specifically for them. Using VxD drivers instead of WDM drivers in Windows 9x resulted in advanced ACPI states like hibernation being unavailable.
VxDs should not be confused with the similarly named NTVDM-specific 'VDDs', which provide a method of emulating direct I/O under a Windows NT "DOS Box". NTVDM VDDs run as regular, 32-bit, user-mode DLLs, and must rely on the Win32 API to emulate the desired I/O on behalf of the 16-bit program.