summaryrefslogtreecommitdiffstats
path: root/src/mobilesync.h
diff options
context:
space:
mode:
authorGravatar Bryan Forbes2010-05-13 22:13:30 +0200
committerGravatar Martin Szulecki2010-05-13 22:13:30 +0200
commit8a776e490d689174cb91d89f43972300d37d4091 (patch)
tree6028d98e39900a8a07144aa9378cfcedc7df4d5b /src/mobilesync.h
parent6a1f93a003bb93c33687f2e8f6fcd68ab733527d (diff)
downloadlibimobiledevice-8a776e490d689174cb91d89f43972300d37d4091.tar.gz
libimobiledevice-8a776e490d689174cb91d89f43972300d37d4091.tar.bz2
Implement mobilesync API
Diffstat (limited to 'src/mobilesync.h')
-rw-r--r--src/mobilesync.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/mobilesync.h b/src/mobilesync.h
index 8317c69..24e61af 100644
--- a/src/mobilesync.h
+++ b/src/mobilesync.h
@@ -2,6 +2,7 @@
2 * mobilesync.h 2 * mobilesync.h
3 * Definitions for the built-in MobileSync client 3 * Definitions for the built-in MobileSync client
4 * 4 *
5 * Copyright (c) 2010 Bryan Forbes All Rights Reserved.
5 * Copyright (c) 2009 Jonathan Beck All Rights Reserved. 6 * Copyright (c) 2009 Jonathan Beck All Rights Reserved.
6 * 7 *
7 * This library is free software; you can redistribute it and/or 8 * This library is free software; you can redistribute it and/or
@@ -24,8 +25,15 @@
24#include "libimobiledevice/mobilesync.h" 25#include "libimobiledevice/mobilesync.h"
25#include "device_link_service.h" 26#include "device_link_service.h"
26 27
28typedef enum {
29 MOBILESYNC_SYNC_DIR_DEVICE_TO_COMPUTER,
30 MOBILESYNC_SYNC_DIR_COMPUTER_TO_DEVICE
31} mobilesync_sync_direction_t;
32
27struct mobilesync_client_private { 33struct mobilesync_client_private {
28 device_link_service_client_t parent; 34 device_link_service_client_t parent;
35 mobilesync_sync_direction_t direction;
36 char *data_class;
29}; 37};
30 38
31#endif 39#endif