WDF_WMI_PROVIDER_CONFIG_INIT - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
// 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

NtDoc

No description available.

Windows Driver Kit DDI reference (nf-wdfwmi-wdf_wmi_provider_config_init)

WDF_WMI_PROVIDER_CONFIG_INIT function

Description

[Applies to KMDF only]

The WDF_WMI_PROVIDER_CONFIG_INIT function initializes a WDF_WMI_PROVIDER_CONFIG structure.

Parameters

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.

Remarks

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.

Examples

For a code example that uses WDF_WMI_PROVIDER_CONFIG_INIT, see WdfWmiProviderCreate.

See also

WDF_WMI_PROVIDER_CONFIG