// wdfobject.h
VOID WDF_OBJECT_ATTRIBUTES_INIT(
[out] PWDF_OBJECT_ATTRIBUTES Attributes
);
View the official Windows Driver Kit DDI reference
No description available.
[Applies to KMDF and UMDF]
The WDF_OBJECT_ATTRIBUTES_INIT function initializes a driver's WDF_OBJECT_ATTRIBUTES structure.
Attributes
[out]A pointer to the driver's WDF_OBJECT_ATTRIBUTES structure.
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.