Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

57 lines
1.1 KiB

For each HID minidriver in the system, the HID class driver keeps a
HIDCLASS_DRIVER_EXTENSION, like so:
HID.SYS -+--> HIDCLASS_DRIVER_EXTENSION
|
+--> HIDCLASS_DRIVER_EXTENSION
|
.
.
.
For each device object associated with a minidriver, the class
driver keeps a HIDCLASS_DEVICE_EXTENSION, like so:
HIDCLASS_DRIVER_EXTENSION -+--> HIDCLASS_DEVICE_EXTENSION
|
+--> HIDCLASS_DEVICE_EXTENSION
|
.
.
.
For each collection associated with a device object, the class driver keeps
a HIDCLASS_COLLECTION structure:
HIDCLASS_DEVICE_EXTENSION -+--> HIDCLASS_COLLECTION
|
+--> HIDCLASS_COLLECTION
|
.
.
.
For each file object associated with a collection, the class
driver keeps a HIDCLASS_FILE_EXTENSION structure:
HIDCLASS_COLLECTION -+--> HIDCLASS_FILE_EXTENSION
|
+--> HIDCLASS_FILE_EXTENSION
|
.
.
.
Finally, the class driver keeps a list of IRPs that are pending against
each file object:
HIDCLASS_FILE_EXTENSION -+--> IRP
|
+--> IRP
|
.
.
.