summaryrefslogtreecommitdiff
path: root/lib/backupclient/BackupClientRestore.h
diff options
context:
space:
mode:
Diffstat (limited to 'lib/backupclient/BackupClientRestore.h')
-rw-r--r--lib/backupclient/BackupClientRestore.h36
1 files changed, 36 insertions, 0 deletions
diff --git a/lib/backupclient/BackupClientRestore.h b/lib/backupclient/BackupClientRestore.h
new file mode 100644
index 00000000..311a15bd
--- /dev/null
+++ b/lib/backupclient/BackupClientRestore.h
@@ -0,0 +1,36 @@
+// --------------------------------------------------------------------------
+//
+// File
+// Name: BackupClientRestore.h
+// Purpose: Functions to restore files from a backup store
+// Created: 23/11/03
+//
+// --------------------------------------------------------------------------
+
+#ifndef BACKUPSCLIENTRESTORE_H
+#define BACKUPSCLIENTRESTORE__H
+
+class BackupProtocolClient;
+
+enum
+{
+ Restore_Complete = 0,
+ Restore_ResumePossible,
+ Restore_TargetExists,
+ Restore_TargetPathNotFound,
+ Restore_UnknownError,
+ Restore_CompleteWithErrors,
+};
+
+int BackupClientRestore(BackupProtocolClient &rConnection,
+ int64_t DirectoryID,
+ const char *RemoteDirectoryName,
+ const char *LocalDirectoryName,
+ bool PrintDots = false,
+ bool RestoreDeleted = false,
+ bool UndeleteAfterRestoreDeleted = false,
+ bool Resume = false,
+ bool ContinueAfterErrors = false);
+
+#endif // BACKUPSCLIENTRESTORE__H
+