summaryrefslogtreecommitdiff
path: root/lib/backupclient/BackupClientRestore.h
blob: f772403029c8aa338ed23a93cf7ac75b5dc0cf4e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
// --------------------------------------------------------------------------
//
// 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 = 1,
	Restore_TargetExists = 2,
	Restore_TargetPathNotFound = 3,
	Restore_UnknownError = 4,
};

int BackupClientRestore(BackupProtocolClient &rConnection, int64_t DirectoryID, const char *LocalDirectoryName,
	bool PrintDots = false, bool RestoreDeleted = false, bool UndeleteAfterRestoreDeleted = false, bool Resume = false);

#endif // BACKUPSCLIENTRESTORE__H