WDF_COINSTALLER_INSTALL_OPTIONS_INIT function (wdfinstaller.h)

[Applies to KMDF only]

The WDF_COINSTALLER_INSTALL_OPTIONS_INIT function initializes a WDF_COINSTALLER_INSTALL_OPTIONS structure.

Syntax

void WDF_COINSTALLER_INSTALL_OPTIONS_INIT(
  [out] PWDF_COINSTALLER_INSTALL_OPTIONS ClientOptions
);

Parameters

[out] ClientOptions

A pointer to a WDF_COINSTALLER_INSTALL_OPTIONS structure.

Return value

None

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);

Requirements

Requirement Value
Target Platform Universal
Minimum KMDF version 1.9
Header wdfinstaller.h (include Wdfinstaller.h)

See also

WDF_COINSTALLER_INSTALL_OPTIONS