WdfControlFinishInitializing - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
// wdfcontrol.h

VOID WdfControlFinishInitializing(
  [in] WDFDEVICE Device
);

View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (nf-wdfcontrol-wdfcontrolfinishinitializing)

WdfControlFinishInitializing function

Description

[Applies to KMDF only]

The WdfControlFinishInitializing method informs the framework that a driver has finished initializing a specified control device object.

Parameters

Device [in]

A handle to a control device object.

Remarks

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.

Examples

For a code example that uses WdfControlFinishInitializing, see WdfControlDeviceInitAllocate.