How To Create Device Objects in Dispatch Routines
Article ID: 126368
Article Last Modified on 2/12/2007
APPLIES TO
- Microsoft Windows NT 4.0 Driver Development Kit, when used with:
- Microsoft Win32 Device Driver Kit for Windows 2000, when used with:
- Microsoft Windows 2000 Standard Edition
- Microsoft Windows XP Driver Development Kit, when used with:
- Microsoft Windows XP Professional
This article was previously published under Q126368
SUMMARY
Most Windows NT kernel-mode device drivers create their device objects in
either the DriverEntry routine or in a routine called by the DriverEntry
routine. However, it is possible to create device objects in Dispatch
routines.
After the device object has been created (IoCreateDevice) and the
initialization is complete, the flag DO_DEVICE_INITIALIZING must be cleared
before the device object can be used. If this flag is not cleared,
CreateFile requests for this device object will fail (that is, applications
will not be able to open the device).
Clear the flag as follows:
deviceObject->Flags &= ~DO_DEVICE_INITIALIZING;
Keywords: kbhowto KB126368