FILE_RESTORE_PACKET_TYPE enumeration

Defines the message types that can be sent by the RestoreFile function.

Note

FMAPI can only be used in the Windows Preinstallation Environment (WinPE) for Windows Vista, Windows Server 2008, and later. Applications that use FMAPI must license WinPE.

Syntax

typedef enum  { 
  FileRestoreProgressInfo  = 100,
  FileRestoreFinished      = 101
} FILE_RESTORE_PACKET_TYPE, *PFILE_RESTORE_PACKET_TYPE;

Constants

FileRestoreProgressInfo

The progress of the restoration process is reported by the callback function. The structure of the progress information is defined in FILE_RESTORE_PROGRESS_INFORMATION.

FileRestoreFinished

The final status of the restoration process is reported by the callback function. The structure of the status information is defined in FILE_RESTORE_FINISHED_INFORMATION.

Remarks

Note that there is no associated header file for this enumeration.

Requirements

Minimum supported client
Windows Vista [desktop apps only]
Minimum supported server
Windows Server 2008 [desktop apps only]

See also

RestoreFile