diff options
Diffstat (limited to 'include/libimobiledevice/mobilebackup.h')
-rw-r--r-- | include/libimobiledevice/mobilebackup.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/include/libimobiledevice/mobilebackup.h b/include/libimobiledevice/mobilebackup.h index f22150d..d4c042e 100644 --- a/include/libimobiledevice/mobilebackup.h +++ b/include/libimobiledevice/mobilebackup.h | |||
@@ -31,6 +31,7 @@ extern "C" { | |||
31 | #include <libimobiledevice/libimobiledevice.h> | 31 | #include <libimobiledevice/libimobiledevice.h> |
32 | #include <libimobiledevice/lockdown.h> | 32 | #include <libimobiledevice/lockdown.h> |
33 | 33 | ||
34 | /** Service identifier passed to lockdownd_start_service() to start the mobilebackup service */ | ||
34 | #define MOBILEBACKUP_SERVICE_NAME "com.apple.mobilebackup" | 35 | #define MOBILEBACKUP_SERVICE_NAME "com.apple.mobilebackup" |
35 | 36 | ||
36 | /** Error Codes */ | 37 | /** Error Codes */ |
@@ -46,9 +47,10 @@ typedef enum { | |||
46 | MOBILEBACKUP_E_UNKNOWN_ERROR = -256 | 47 | MOBILEBACKUP_E_UNKNOWN_ERROR = -256 |
47 | } mobilebackup_error_t; | 48 | } mobilebackup_error_t; |
48 | 49 | ||
49 | typedef struct mobilebackup_client_private mobilebackup_client_private; | 50 | typedef struct mobilebackup_client_private mobilebackup_client_private; /**< \private */ |
50 | typedef mobilebackup_client_private *mobilebackup_client_t; /**< The client handle. */ | 51 | typedef mobilebackup_client_private *mobilebackup_client_t; /**< The client handle. */ |
51 | 52 | ||
53 | /** Available flags passed to #mobilebackup_request_restore */ | ||
52 | typedef enum { | 54 | typedef enum { |
53 | MB_RESTORE_NOTIFY_SPRINGBOARD = 1 << 0, | 55 | MB_RESTORE_NOTIFY_SPRINGBOARD = 1 << 0, |
54 | MB_RESTORE_PRESERVE_SETTINGS = 1 << 1, | 56 | MB_RESTORE_PRESERVE_SETTINGS = 1 << 1, |