From 8a776e490d689174cb91d89f43972300d37d4091 Mon Sep 17 00:00:00 2001 From: Bryan Forbes Date: Thu, 13 May 2010 22:13:30 +0200 Subject: Implement mobilesync API --- src/mobilesync.h | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'src/mobilesync.h') 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 -- cgit v1.1-32-gdbae