diff options
author | Joshua Hill | 2010-06-05 11:17:05 +0800 |
---|---|---|
committer | rcg4u | 2010-06-09 17:17:28 +0800 |
commit | 7f98089a5e6663be50521063cf7171ab1bbc9fa2 (patch) | |
tree | 73a8cf475e0fb13ba8957fb3a696b7340f5cba9c /src/restore.h | |
parent | 3761295840ba6c7672aebcb2b084a2dbf7099735 (diff) | |
download | idevicerestore-7f98089a5e6663be50521063cf7171ab1bbc9fa2.tar.gz idevicerestore-7f98089a5e6663be50521063cf7171ab1bbc9fa2.tar.bz2 |
Even more major cleanups and refactoring, this branch is still broken but starting to mature really well
Diffstat (limited to 'src/restore.h')
-rw-r--r-- | src/restore.h | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/src/restore.h b/src/restore.h index f344b5d..99ba80b 100644 --- a/src/restore.h +++ b/src/restore.h @@ -22,16 +22,19 @@ #ifndef IDEVICERESTORE_RESTORE_H #define IDEVICERESTORE_RESTORE_H +#include <plist/plist.h> #include <libimobiledevice/restore.h> - -#include "restore.h" +#include <libimobiledevice/libimobiledevice.h> int restore_check_mode(const char* uuid); -int restore_handle_progress_msg(restored_client_t client, plist_t msg); +const char* restore_progress_string(unsigned int operation); +void restore_close(idevice_t device, restored_client_t restore); int restore_handle_status_msg(restored_client_t client, plist_t msg); -int restore_send_filesystem(idevice_t device, restored_client_t client, const char *filesystem); +int restore_handle_progress_msg(restored_client_t client, plist_t msg); +int restore_send_nor(restored_client_t client, const char* ipsw, plist_t tss); int restore_send_kernelcache(restored_client_t client, char *kernel_data, int len); -int restore_send_nor(restored_client_t client, char* ipsw, plist_t tss); -const char* restore_progress_string(unsigned int operation); +int restore_device(const char* uuid, const char* ipsw, plist_t tss, const char* filesystem); +int restore_open_with_timeout(const char* uuid, idevice_t* device, restored_client_t* client); +int restore_send_filesystem(idevice_t device, restored_client_t client, const char *filesystem); #endif |