diff options
author | Martin Szulecki | 2013-02-11 04:00:38 +0100 |
---|---|---|
committer | Martin Szulecki | 2013-02-11 04:00:38 +0100 |
commit | 370ba8c119e05ab0121559fd22848b7d7083189e (patch) | |
tree | 4882a6b191ae050ad883fd465c4419c506418b53 /include | |
parent | 499fae9c5116d74f72025954f54c0bc5e741386e (diff) | |
download | libimobiledevice-370ba8c119e05ab0121559fd22848b7d7083189e.tar.gz libimobiledevice-370ba8c119e05ab0121559fd22848b7d7083189e.tar.bz2 |
mobilesync: Add new error_description argument to grab device error messages
Diffstat (limited to 'include')
-rw-r--r-- | include/libimobiledevice/mobilesync.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/libimobiledevice/mobilesync.h b/include/libimobiledevice/mobilesync.h index bd717ee..cfab8d9 100644 --- a/include/libimobiledevice/mobilesync.h +++ b/include/libimobiledevice/mobilesync.h @@ -71,7 +71,7 @@ mobilesync_error_t mobilesync_client_free(mobilesync_client_t client); mobilesync_error_t mobilesync_receive(mobilesync_client_t client, plist_t *plist); mobilesync_error_t mobilesync_send(mobilesync_client_t client, plist_t plist); -mobilesync_error_t mobilesync_start(mobilesync_client_t client, const char *data_class, mobilesync_anchors_t anchors, uint64_t computer_data_class_version, mobilesync_sync_type_t *sync_type, uint64_t *device_data_class_version); +mobilesync_error_t mobilesync_start(mobilesync_client_t client, const char *data_class, mobilesync_anchors_t anchors, uint64_t computer_data_class_version, mobilesync_sync_type_t *sync_type, uint64_t *device_data_class_version, char** error_description); mobilesync_error_t mobilesync_cancel(mobilesync_client_t client, const char* reason); mobilesync_error_t mobilesync_finish(mobilesync_client_t client); |