WdfControlFinishInitializing method
[Applies to KMDF only]
The WdfControlFinishInitializing method informs the framework that a driver has finished initializing a specified control device object.
Syntax
VOID WdfControlFinishInitializing(
[in] WDFDEVICE Device
);
Parameters
- Device [in]
-
A handle to a control device object.
Return value
None.
A system bug check occurs if the driver supplies an invalid object handle.
Remarks
The system will not send I/O requests or Windows Management Instrumentation (WMI) requests to a control device object unless the driver has called WdfControlFinishInitializing.
For more information about control device objects and calling WdfControlFinishInitializing, see Using Control Device Objects.
Examples
For a code example that uses WdfControlFinishInitializing, see WdfControlDeviceInitAllocate.
Requirements
Minimum KMDF version | 1.0 |
---|---|
Header |
|
Library |
|
IRQL | <= DISPATCH_LEVEL |
DDI compliance rules | CtlDeviceFinishInitDeviceAdd, CtlDeviceFinishInitDrEntry, DriverCreate, KmdfIrql, KmdfIrql2 |
Show: