WDF_COINSTALLER_INSTALL_OPTIONS_INIT - NtDoc

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

VOID WDF_COINSTALLER_INSTALL_OPTIONS_INIT(
  [out] PWDF_COINSTALLER_INSTALL_OPTIONS ClientOptions
);
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (nf-wdfinstaller-wdf_coinstaller_install_options_init)

WDF_COINSTALLER_INSTALL_OPTIONS_INIT function

Description

[Applies to KMDF only]

The WDF_COINSTALLER_INSTALL_OPTIONS_INIT function initializes a WDF_COINSTALLER_INSTALL_OPTIONS structure.

Parameters

ClientOptions [out]

A pointer to a WDF_COINSTALLER_INSTALL_OPTIONS structure.

Remarks

The WDF_COINSTALLER_INSTALL_OPTIONS_INIT function zeros the specified WDF_COINSTALLER_INSTALL_OPTIONS structure and sets the structure's Size member.

Examples

The following code example initializes a WDF_COINSTALLER_INSTALL_OPTIONS structure.

WDF_COINSTALLER_INSTALL_OPTIONS clientOptions;
WDF_COINSTALLER_INSTALL_OPTIONS_INIT(&clientOptions);

See also

WDF_COINSTALLER_INSTALL_OPTIONS