API SetupPromptReboot_()

Vous débutez et vous avez besoin d'aide ? N'hésitez pas à poser vos questions
gansta93
Messages : 1448
Inscription : jeu. 26/févr./2004 11:17
Localisation : Le Village
Contact :

API SetupPromptReboot_()

Message par gansta93 »

Salut tout le monde,

J'ai découvert une commande qui demandait un reboot ou non de l'ordi... celle que mait WINDOWS après avoir modifier des paramètres.
Mais j'ai une synthaxe qui est:
SetupPromptReboot_(0,0,0)
Ma question est:
à quoi cervent le 0,0,0 entre parentèses?
Peut-il être remplacé par autre chose?
Si oui quoi et quelle concéquence cela aura-t-il sur la commande?

Merci d'avence
Avatar de l’utilisateur
cederavic
Messages : 1338
Inscription : lun. 09/févr./2004 23:38
Localisation : Bordeaux

Message par cederavic »

voila ce que dit la doc :
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.

INT SetupPromptReboot(

HSPFILEQ FileQueue, // optional, handle to a file queue
HWND Owner, // parent window of this dialog box
BOOL ScanOnly // optional, do not prompt user
);


Parameters

FileQueue

This optional parameter supplies 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

Supplies the handle for the parent window to own windows created by this function.

ScanOnly

This optional parameter enables you to specify 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 ScanOnly is 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 Values

The function returns a combination of the following flags or -1 if an error occurred:

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.
Répondre