diff options
author | 2022-04-12 02:26:34 +0200 | |
---|---|---|
committer | 2022-04-12 02:26:34 +0200 | |
commit | dca3cf8c5bd804bf563fd43a6cdfdb1a5b85d490 (patch) | |
tree | 56a21e7f928fd20da792772d8a899c7f3df64db7 /include/libimobiledevice/mobilesync.h | |
parent | ea6084c4ed624b6191b4b47737e33d88911bebc8 (diff) | |
download | libimobiledevice-dca3cf8c5bd804bf563fd43a6cdfdb1a5b85d490.tar.gz libimobiledevice-dca3cf8c5bd804bf563fd43a6cdfdb1a5b85d490.tar.bz2 |
Documentation fixes
Diffstat (limited to 'include/libimobiledevice/mobilesync.h')
-rw-r--r-- | include/libimobiledevice/mobilesync.h | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/include/libimobiledevice/mobilesync.h b/include/libimobiledevice/mobilesync.h index 005ef3f..6b1af18 100644 --- a/include/libimobiledevice/mobilesync.h +++ b/include/libimobiledevice/mobilesync.h | |||
@@ -34,6 +34,7 @@ extern "C" { | |||
34 | #include <libimobiledevice/libimobiledevice.h> | 34 | #include <libimobiledevice/libimobiledevice.h> |
35 | #include <libimobiledevice/lockdown.h> | 35 | #include <libimobiledevice/lockdown.h> |
36 | 36 | ||
37 | /** Service identifier passed to lockdownd_start_service() to start the mobilesync service */ | ||
37 | #define MOBILESYNC_SERVICE_NAME "com.apple.mobilesync" | 38 | #define MOBILESYNC_SERVICE_NAME "com.apple.mobilesync" |
38 | 39 | ||
39 | /** Error Codes */ | 40 | /** Error Codes */ |
@@ -59,14 +60,16 @@ typedef enum { | |||
59 | MOBILESYNC_SYNC_TYPE_RESET /**< Reset-sync signals that the computer should send all data again. */ | 60 | MOBILESYNC_SYNC_TYPE_RESET /**< Reset-sync signals that the computer should send all data again. */ |
60 | } mobilesync_sync_type_t; | 61 | } mobilesync_sync_type_t; |
61 | 62 | ||
62 | typedef struct mobilesync_client_private mobilesync_client_private; | 63 | typedef struct mobilesync_client_private mobilesync_client_private; /**< \private */ |
63 | typedef mobilesync_client_private *mobilesync_client_t; /**< The client handle */ | 64 | typedef mobilesync_client_private *mobilesync_client_t; /**< The client handle */ |
64 | 65 | ||
66 | /** Anchors used by the device and computer (structure) */ | ||
65 | typedef struct { | 67 | typedef struct { |
66 | char *device_anchor; | 68 | char *device_anchor; /**< device anchor */ |
67 | char *computer_anchor; | 69 | char *computer_anchor; /**< computer anchor */ |
68 | } mobilesync_anchors; | 70 | } mobilesync_anchors; |
69 | typedef mobilesync_anchors *mobilesync_anchors_t; /**< Anchors used by the device and computer. */ | 71 | /** Anchors used by the device and computer */ |
72 | typedef mobilesync_anchors *mobilesync_anchors_t; | ||
70 | 73 | ||
71 | /* Interface */ | 74 | /* Interface */ |
72 | 75 | ||