summaryrefslogtreecommitdiffstats
path: root/include/libimobiledevice/mobilesync.h
diff options
context:
space:
mode:
authorGravatar Nikias Bassen2022-04-12 02:26:34 +0200
committerGravatar Nikias Bassen2022-04-12 02:26:34 +0200
commitdca3cf8c5bd804bf563fd43a6cdfdb1a5b85d490 (patch)
tree56a21e7f928fd20da792772d8a899c7f3df64db7 /include/libimobiledevice/mobilesync.h
parentea6084c4ed624b6191b4b47737e33d88911bebc8 (diff)
downloadlibimobiledevice-dca3cf8c5bd804bf563fd43a6cdfdb1a5b85d490.tar.gz
libimobiledevice-dca3cf8c5bd804bf563fd43a6cdfdb1a5b85d490.tar.bz2
Documentation fixes
Diffstat (limited to 'include/libimobiledevice/mobilesync.h')
-rw-r--r--include/libimobiledevice/mobilesync.h11
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
62typedef struct mobilesync_client_private mobilesync_client_private; 63typedef struct mobilesync_client_private mobilesync_client_private; /**< \private */
63typedef mobilesync_client_private *mobilesync_client_t; /**< The client handle */ 64typedef mobilesync_client_private *mobilesync_client_t; /**< The client handle */
64 65
66/** Anchors used by the device and computer (structure) */
65typedef struct { 67typedef 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;
69typedef mobilesync_anchors *mobilesync_anchors_t; /**< Anchors used by the device and computer. */ 71/** Anchors used by the device and computer */
72typedef mobilesync_anchors *mobilesync_anchors_t;
70 73
71/* Interface */ 74/* Interface */
72 75