// 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
No description available.
[Applies to KMDF and UMDF]
The WDF_DRIVER_CONFIG_INIT function initializes a driver's WDF_DRIVER_CONFIG structure.
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.
The WDF_DRIVER_CONFIG_INIT function is available in version 1.0 and later versions of KMDF.
For a code example that uses WDF_DRIVER_CONFIG_INIT, see WdfDriverCreate.