Expand Minimize

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

Wdfcontrol.h (include Wdf.h)

Library

Wdf01000.sys (see Framework Library Versioning.)

IRQL

<= DISPATCH_LEVEL

DDI compliance rules

CtlDeviceFinishInitDeviceAdd, CtlDeviceFinishInitDrEntry, DriverCreate, KmdfIrql, KmdfIrql2

 

 

Send comments about this topic to Microsoft

Show:
© 2014 Microsoft. All rights reserved.