SetupPromptReboot Function
[This function is available for use in the operating systems indicated in the Requirements section. It may be altered or unavailable in subsequent versions. SetupAPI should no longer be used for installing applications. Instead, use the Windows Installer for developing application installers. SetupAPI continues to be used for installing device drivers.]
The SetupPromptReboot function asks the user if he wants to reboot the system, optionally dependent on whether any files in a committed file queue were in use during a file operation. If the user answers "yes" to the prompt, shutdown is initiated before this routine returns.
Syntax
INT SetupPromptReboot( __in HSPFILEQ FileQueue, __in HWND Owner, __in BOOL ScanOnly );
Parameters
- FileQueue [in]
-
Optional pointer to a handle to the file queue upon which to base the decision about whether shutdown is necessary. If FileQueue is not specified, SetupPromptReboot assumes shutdown is necessary and asks the user what to do.
- Owner [in]
-
Handle for the parent window to own windows created by this function.
- ScanOnly [in]
-
Indicates whether or not to prompt the user when SetupPromptReboot is called.
If TRUE, the user is never asked about rebooting, and system shutdown is not initiated. In this case, FileQueue must be specified. If FALSE, the user is asked about rebooting, as previously described.
Use ScanOnly to determine if shutdown is necessary separately from actually initiating a shutdown.
Return Value
The function returns a combination of the following flags or –1 if an error occurs.
- SPFILEQ_FILE_IN_USE
-
At least one file was in use during the queue commit process and there are delayed file operations pending. This flag will only be set if FileQueue is specified.
- SPFILEQ_REBOOT_RECOMMENDED
-
The system should be rebooted. Depending on other flags and user response to the shutdown query, shutdown may be underway.
- SPFILEQ_REBOOT_IN_PROGRESS
-
System shutdown is in progress.
To get extended error information, call GetLastError.
Requirements
|
Minimum supported client | Windows 2000 Professional |
|---|---|
|
Minimum supported server | Windows 2000 Server |
|
Header | Setupapi.h |
|
Library | Setupapi.lib |
|
DLL | Setupapi.dll |
See Also
Build date: 8/19/2010