diff options
author | Bryan Forbes | 2010-05-13 22:13:30 +0200 |
---|---|---|
committer | Martin Szulecki | 2010-05-13 22:13:30 +0200 |
commit | 8a776e490d689174cb91d89f43972300d37d4091 (patch) | |
tree | 6028d98e39900a8a07144aa9378cfcedc7df4d5b /src/mobilesync.h | |
parent | 6a1f93a003bb93c33687f2e8f6fcd68ab733527d (diff) | |
download | libimobiledevice-8a776e490d689174cb91d89f43972300d37d4091.tar.gz libimobiledevice-8a776e490d689174cb91d89f43972300d37d4091.tar.bz2 |
Implement mobilesync API
Diffstat (limited to 'src/mobilesync.h')
-rw-r--r-- | src/mobilesync.h | 8 |
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 @@ * mobilesync.h * Definitions for the built-in MobileSync client * + * Copyright (c) 2010 Bryan Forbes All Rights Reserved. * Copyright (c) 2009 Jonathan Beck All Rights Reserved. * * This library is free software; you can redistribute it and/or @@ -24,8 +25,15 @@ #include "libimobiledevice/mobilesync.h" #include "device_link_service.h" +typedef enum { + MOBILESYNC_SYNC_DIR_DEVICE_TO_COMPUTER, + MOBILESYNC_SYNC_DIR_COMPUTER_TO_DEVICE +} mobilesync_sync_direction_t; + struct mobilesync_client_private { device_link_service_client_t parent; + mobilesync_sync_direction_t direction; + char *data_class; }; #endif |