// wdfinstaller.h
VOID WDF_COINSTALLER_INSTALL_OPTIONS_INIT(
[out] PWDF_COINSTALLER_INSTALL_OPTIONS ClientOptions
);
View the official Windows Driver Kit DDI referenceNo description available.
[Applies to KMDF only]
The WDF_COINSTALLER_INSTALL_OPTIONS_INIT function initializes a WDF_COINSTALLER_INSTALL_OPTIONS structure.
ClientOptions [out]A pointer to a WDF_COINSTALLER_INSTALL_OPTIONS structure.
The WDF_COINSTALLER_INSTALL_OPTIONS_INIT function zeros the specified WDF_COINSTALLER_INSTALL_OPTIONS structure and sets the structure's Size member.
The following code example initializes a WDF_COINSTALLER_INSTALL_OPTIONS structure.
WDF_COINSTALLER_INSTALL_OPTIONS clientOptions;
WDF_COINSTALLER_INSTALL_OPTIONS_INIT(&clientOptions);
WDF_COINSTALLER_INSTALL_OPTIONS