From 92c2879d16148f47ff38f3490f24768bb8eb61f6 Mon Sep 17 00:00:00 2001 From: Joshua Hill Date: Mon, 24 May 2010 15:35:08 -0400 Subject: Have it sending DeviceTree now and started on ramdisk. Started to clean up a little bit, but not everything yet. --- src/ipsw.h | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) (limited to 'src/ipsw.h') diff --git a/src/ipsw.h b/src/ipsw.h index 5cbad19..6a49937 100644 --- a/src/ipsw.h +++ b/src/ipsw.h @@ -24,10 +24,6 @@ #include -typedef struct { - struct zip* zip; -} ipsw_archive; - typedef struct { int index; char* name; @@ -35,9 +31,7 @@ typedef struct { unsigned char* data; } ipsw_file; -ipsw_archive* ipsw_open(const char* ipsw); -ipsw_file* ipsw_extract_file(ipsw_archive* archive, const char* filename); +ipsw_file* ipsw_extract_file(const char* ipsw, const char* filename); void ipsw_free_file(ipsw_file* file); -void ipsw_close(ipsw_archive* archive); #endif -- cgit v1.1-32-gdbae