WDF_OBJECT_ATTRIBUTES_INIT, fonction (wdfobject.h)
[S’applique à KMDF et UMDF]
La fonction WDF_OBJECT_ATTRIBUTES_INIT initialise la structure WDF_OBJECT_ATTRIBUTES d’un pilote.
Syntaxe
void WDF_OBJECT_ATTRIBUTES_INIT(
[out] PWDF_OBJECT_ATTRIBUTES Attributes
);
Paramètres
[out] Attributes
Pointeur vers la structure WDF_OBJECT_ATTRIBUTES du pilote.
Valeur de retour
None
Remarques
La fonction WDF_OBJECT_ATTRIBUTES_INIT définit le membre ExecutionLevel de la structure de WDF_OBJECT_ATTRIBUTES spécifiée sur WdfExecutionLevelInheritFromParent, et définit le membre SynchronizationScope sur WdfSynchronizationScopeInheritFromParent.
Pour obtenir des exemples de code qui utilisent WDF_OBJECT_ATTRIBUTES_INIT, consultez WdfObjectCreate et WdfObjectGetTypedContext.
Configuration requise
Condition requise | Valeur |
---|---|
Plateforme cible | Universal |
Version KMDF minimale | 1.0 |
Version UMDF minimale | 2.0 |
En-tête | wdfobject.h (inclure Wdf.h) |