// wdfwmi.h
VOID WDF_WMI_PROVIDER_CONFIG_INIT(
[out] PWDF_WMI_PROVIDER_CONFIG Config,
[in] const GUID *Guid
);
View the official Windows Driver Kit DDI reference
No description available.
[Applies to KMDF only]
The WDF_WMI_PROVIDER_CONFIG_INIT function initializes a WDF_WMI_PROVIDER_CONFIG structure.
Config
[out]A pointer to a WDF_WMI_PROVIDER_CONFIG structure.
Guid
[in]A pointer to a GUID that identifies a WMI data provider's data block.
The WDF_WMI_PROVIDER_CONFIG_INIT function zeros the specified WDF_WMI_PROVIDER_CONFIG structure and sets its Size member. This function also copies the specified GUID into the structure's Guid member.
For a code example that uses WDF_WMI_PROVIDER_CONFIG_INIT, see WdfWmiProviderCreate.