diff options
author | Joshua Hill | 2010-06-04 23:17:05 -0400 |
---|---|---|
committer | Joshua Hill | 2010-06-04 23:17:05 -0400 |
commit | 0966c00988477450691c8c9bce47a3fb30eff6da (patch) | |
tree | 73a8cf475e0fb13ba8957fb3a696b7340f5cba9c /src/ipsw.h | |
parent | 7e9d37959d7db900528d68d44445509f4abc6fdf (diff) | |
download | idevicerestore-0966c00988477450691c8c9bce47a3fb30eff6da.tar.gz idevicerestore-0966c00988477450691c8c9bce47a3fb30eff6da.tar.bz2 |
Even more major cleanups and refactoring, this branch is still broken but starting to mature really well
Diffstat (limited to 'src/ipsw.h')
-rw-r--r-- | src/ipsw.h | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -23,6 +23,7 @@ #define IDEVICERESTORE_IPSW_H #include <zip.h> +#include <stdint.h> typedef struct { int index; @@ -31,7 +32,7 @@ typedef struct { unsigned char* data; } ipsw_file; -int ipsw_extract_to_memory(const char* ipsw, const char* infile, char** pbuffer, int* psize); +int ipsw_extract_to_memory(const char* ipsw, const char* infile, char** pbuffer, uint32_t* psize); void ipsw_free_file(ipsw_file* file); #endif |