diff options
author | 2012-11-07 22:08:53 +0100 | |
---|---|---|
committer | 2012-11-07 22:08:53 +0100 | |
commit | b65a7ce7ebca6730fce5dcbfd820d8ef4124e18f (patch) | |
tree | 3aaa3a68931bbaf3ec31bef6fad18c951cf7d32f /src/restore.h | |
parent | b44ad07bec397f6cd1c597946efe86e5ed2a490b (diff) | |
download | idevicerestore-b65a7ce7ebca6730fce5dcbfd820d8ef4124e18f.tar.gz idevicerestore-b65a7ce7ebca6730fce5dcbfd820d8ef4124e18f.tar.bz2 |
libidevicerecovery: implemented progress callback logic
Diffstat (limited to 'src/restore.h')
-rw-r--r-- | src/restore.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/restore.h b/src/restore.h index 071fa8f..2389b3b 100644 --- a/src/restore.h +++ b/src/restore.h @@ -48,14 +48,14 @@ void restore_client_free(struct idevicerestore_client_t* client); int restore_reboot(struct idevicerestore_client_t* client); const char* restore_progress_string(unsigned int operation); int restore_handle_status_msg(restored_client_t client, plist_t msg); -int restore_handle_progress_msg(restored_client_t client, plist_t msg); +int restore_handle_progress_msg(struct idevicerestore_client_t* client, plist_t msg); int restore_handle_data_request_msg(struct idevicerestore_client_t* client, idevice_t device, restored_client_t restore, plist_t message, plist_t build_identity, const char* filesystem); int restore_send_nor(restored_client_t restore, struct idevicerestore_client_t* client, plist_t build_identity); int restore_send_root_ticket(restored_client_t restore, struct idevicerestore_client_t* client); int restore_send_kernelcache(restored_client_t restore, struct idevicerestore_client_t* client, plist_t build_identity); int restore_device(struct idevicerestore_client_t* client, plist_t build_identity, const char* filesystem); int restore_open_with_timeout(struct idevicerestore_client_t* client); -int restore_send_filesystem(idevice_t device, const char* filesystem); +int restore_send_filesystem(struct idevicerestore_client_t* client, idevice_t device, const char* filesystem); #ifdef __cplusplus |