WDF_DPC_CONFIG_INIT - NtDoc

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

VOID WDF_DPC_CONFIG_INIT(
  [out] PWDF_DPC_CONFIG Config,
  [in]  PFN_WDF_DPC     EvtDpcFunc
);
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (nf-wdfdpc-wdf_dpc_config_init)

WDF_DPC_CONFIG_INIT function

Description

[Applies to KMDF only]

The WDF_DPC_CONFIG_INIT function initializes a driver's WDF_DPC_CONFIG structure.

Parameters

Config [out]

A pointer to a driver-allocated WDF_DPC_CONFIG structure.

EvtDpcFunc [in]

A pointer to a driver-supplied EvtDpcFunc callback function.

Remarks

The WDF_DPC_CONFIG_INIT function stores the specified EvtDpcFunc pointer and sets the AutomaticSerialization member of the WDF_DPC_CONFIG structure to TRUE.

Examples

For a code example that uses the WDF_DPC_CONFIG_INIT function, see WdfDpcCreate.

See also

EvtDpcFunc

WDF_DPC_CONFIG