Partager via


fonction WDF_DMA_ENABLER_CONFIG_INIT (wdfdmaenabler.h)

[S’applique uniquement à KMDF]

La fonction WDF_DMA_ENABLER_CONFIG_INIT initialise la structure WDF_DMA_ENABLER_CONFIG d’un pilote.

Syntaxe

void WDF_DMA_ENABLER_CONFIG_INIT(
  [out] PWDF_DMA_ENABLER_CONFIG Config,
  [in]  WDF_DMA_PROFILE         Profile,
  [in]  size_t                  MaximumLength
);

Paramètres

[out] Config

Pointeur vers une structure WDF_DMA_ENABLER_CONFIG allouée par le pilote.

[in] Profile

Valeur du membre Profile de la structure WDF_DMA_ENABLER_CONFIG.

[in] MaximumLength

Valeur du membre MaximumLength de la structure WDF_DMA_ENABLER_CONFIG.

Valeur de retour

Aucun

Remarques

Les pilotes doivent appeler la fonction WDF_DMA_ENABLER_CONFIG_INIT avant d’appeler WdfDmaEnablerCreate.

Exemples

Pour obtenir un exemple de code qui utilise WDF_DMA_ENABLER_CONFIG_INIT, consultez WdfDmaEnablerCreate.

Spécifications

Besoin Valeur
plateforme cible Universel
version minimale de KMDF 1.0
En-tête wdfdmaenabler.h (include Wdf.h)
IRQL PASSIVE_LEVEL

Voir aussi

WDF_DMA_ENABLER_CONFIG

WdfDmaEnablerCreate