WDF_COINSTALLER_INSTALL_OPTIONS - NtDoc

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

typedef struct _WDF_COINSTALLER_INSTALL_OPTIONS {
  ULONG Size;
  BOOL  ShowRebootPrompt;
} WDF_COINSTALLER_INSTALL_OPTIONS, *PWDF_COINSTALLER_INSTALL_OPTIONS;
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (ns-wdfinstaller-_wdf_coinstaller_install_options)

_WDF_COINSTALLER_INSTALL_OPTIONS structure

Description

[Applies to KMDF only]

The WDF_COINSTALLER_INSTALL_OPTIONS structure contains installation options that a framework-based driver's installer can specify to the framework's co-installer.

Members

Size

The size, in bytes, of this structure.

ShowRebootPrompt

A Boolean value. If this value is TRUE, and if the co-installer determines that the computer must be restarted to complete the driver installation, WdfPreDeviceInstallEx informs the Plug and Play (PnP) manager, and the PnP manager prompts the user that a restart is necessary.

If this value is FALSE, and if the co-installer determines that the computer must be restarted to complete the driver installation, WdfPreDeviceInstallEx does not inform the PnP manager.

Remarks

The WDF_COINSTALLER_INSTALL_OPTIONS structure is used as an input parameter to WdfPreDeviceInstallEx.

Your installer should initialize the WDF_COINSTALLER_INSTALL_OPTIONS structure by calling WDF_COINSTALLER_INSTALL_OPTIONS_INIT.

See also

WDF_COINSTALLER_INSTALL_OPTIONS_INIT