WDM Driver Object and Device Object
Monday, July 24th, 2006 Defined in wdm.h:
typedef struct _DRIVER_OBJECT
{
CSHORT Type;
CSHORT Size;
PDEVICE_OBJECT DeviceObject; // link list maintained by IO manager
…
PDRIVER_EXTENSION DriverExtension; // AddDevice
…
PUNICODE_STRING HardwareDatabase; //registry key for the device
…
PDRIVER_STARTIO DriverStartIo; // function processes IO request
…
PDRIVER_DISPATCH MajorFunction; // table […]
