From 67bb07bb55577970761b51effa9e17b05b86a2a2 Mon Sep 17 00:00:00 2001 From: Nikias Bassen Date: Tue, 17 Jul 2012 19:00:33 +0200 Subject: ipsw: add function ipsw_get_file_size() to get uncompressed file size --- src/ipsw.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/ipsw.h') diff --git a/src/ipsw.h b/src/ipsw.h index c61e73d..50309bc 100644 --- a/src/ipsw.h +++ b/src/ipsw.h @@ -37,6 +37,8 @@ typedef struct { unsigned char* data; } ipsw_file; +int ipsw_get_file_size(const char* ipsw, const char* infile, off_t* size); +int ipsw_extract_to_file(const char* ipsw, const char* infile, const char* outfile); int ipsw_extract_to_memory(const char* ipsw, const char* infile, char** pbuffer, uint32_t* psize); int ipsw_extract_build_manifest(const char* ipsw, plist_t* buildmanifest, int *tss_enabled); int ipsw_extract_restore_plist(const char* ipsw, plist_t* restore_plist); -- cgit v1.1-32-gdbae