WDF_OBJECT_ATTRIBUTES_INIT - NtDoc

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

VOID WDF_OBJECT_ATTRIBUTES_INIT(
  [out] PWDF_OBJECT_ATTRIBUTES Attributes
);

View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (nf-wdfobject-wdf_object_attributes_init)

WDF_OBJECT_ATTRIBUTES_INIT function

Description

[Applies to KMDF and UMDF]

The WDF_OBJECT_ATTRIBUTES_INIT function initializes a driver's WDF_OBJECT_ATTRIBUTES structure.

Parameters

Attributes [out]

A pointer to the driver's WDF_OBJECT_ATTRIBUTES structure.

Remarks

The WDF_OBJECT_ATTRIBUTES_INIT function sets the ExecutionLevel member of the specified WDF_OBJECT_ATTRIBUTES structure to WdfExecutionLevelInheritFromParent, and it sets the SynchronizationScope member to WdfSynchronizationScopeInheritFromParent.

For code examples that use WDF_OBJECT_ATTRIBUTES_INIT, see WdfObjectCreate and WdfObjectGetTypedContext.

See also

WDF_OBJECT_ATTRIBUTES