summaryrefslogtreecommitdiffstats
path: root/src/restore.h
diff options
context:
space:
mode:
authorGravatar Joshua Hill2010-06-01 16:13:25 -0400
committerGravatar Joshua Hill2010-06-01 16:13:25 -0400
commit4d74cd31751165b671eba9a1b0936718b7f39b52 (patch)
treebcc8ff80fc9152823c5881de9d0163a124d369f1 /src/restore.h
parent4de6d38c54d9f641006539a06083e423a5d0c9c9 (diff)
downloadidevicerestore-4d74cd31751165b671eba9a1b0936718b7f39b52.tar.gz
idevicerestore-4d74cd31751165b671eba9a1b0936718b7f39b52.tar.bz2
Began major refactoring, not quite finished yet, this branch is probably broke
Diffstat (limited to 'src/restore.h')
-rw-r--r--src/restore.h9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/restore.h b/src/restore.h
index 644658a..f344b5d 100644
--- a/src/restore.h
+++ b/src/restore.h
@@ -19,18 +19,19 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
-#ifndef RESTORED_H
-#define RESTORED_H
+#ifndef IDEVICERESTORE_RESTORE_H
+#define IDEVICERESTORE_RESTORE_H
#include <libimobiledevice/restore.h>
#include "restore.h"
+int restore_check_mode(const char* uuid);
int restore_handle_progress_msg(restored_client_t client, plist_t msg);
int restore_handle_status_msg(restored_client_t client, plist_t msg);
-int asr_send_system_image_data_from_file(idevice_t device, restored_client_t client, const char *filesystem);
+int restore_send_filesystem(idevice_t device, restored_client_t client, const char *filesystem);
int restore_send_kernelcache(restored_client_t client, char *kernel_data, int len);
-int restore_send_nor_data(restored_client_t client, char* ipsw, plist_t tss);
+int restore_send_nor(restored_client_t client, char* ipsw, plist_t tss);
const char* restore_progress_string(unsigned int operation);
#endif