WDF_DRIVER_CONFIG_INIT - NtDoc

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

VOID WDF_DRIVER_CONFIG_INIT(
  [out]          PWDF_DRIVER_CONFIG        Config,
  [in, optional] PFN_WDF_DRIVER_DEVICE_ADD EvtDriverDeviceAdd
);

View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (nf-wdfdriver-wdf_driver_config_init)

WDF_DRIVER_CONFIG_INIT function

Description

[Applies to KMDF and UMDF]

The WDF_DRIVER_CONFIG_INIT function initializes a driver's WDF_DRIVER_CONFIG structure.

Parameters

Config [out]

A pointer to the WDF_DRIVER_CONFIG structure that the function will initialize.

EvtDriverDeviceAdd [in, optional]

A pointer to the driver's EvtDriverDeviceAdd callback function.

Remarks

The WDF_DRIVER_CONFIG_INIT function is available in version 1.0 and later versions of KMDF.

Examples

For a code example that uses WDF_DRIVER_CONFIG_INIT, see WdfDriverCreate.

See also

EvtDriverDeviceAdd

WDF_DRIVER_CONFIG

WdfDriverCreate