// wdfcontrol.h
VOID WdfControlFinishInitializing(
[in] WDFDEVICE Device
);
View the official Windows Driver Kit DDI reference
No description available.
[Applies to KMDF only]
The WdfControlFinishInitializing method informs the framework that a driver has finished initializing a specified control device object.
Device
[in]A handle to a control device object.
A bug check occurs if the driver supplies an invalid object handle.
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.
For a code example that uses WdfControlFinishInitializing, see WdfControlDeviceInitAllocate.