diff options
| author | 2019-02-14 00:32:13 +0100 | |
|---|---|---|
| committer | 2019-02-14 00:32:13 +0100 | |
| commit | 15b85554808e51d3009f3742b1800620a217b149 (patch) | |
| tree | ee967016fe79cf8d236a7f1e0473deea9e651083 /src/ipsw.h | |
| parent | 4a1c7c75519ffe77d8540e056e31fcfe17f1d3fd (diff) | |
| download | idevicerestore-15b85554808e51d3009f3742b1800620a217b149.tar.gz idevicerestore-15b85554808e51d3009f3742b1800620a217b149.tar.bz2 | |
Use uint64_t instead of off_t for win32/MinGW compatibility
Diffstat (limited to 'src/ipsw.h')
| -rw-r--r-- | src/ipsw.h | 2 | 
1 files changed, 1 insertions, 1 deletions
| @@ -33,7 +33,7 @@ extern "C" {  int ipsw_is_directory(const char* ipsw);  int ipsw_file_exists(const char* ipsw, const char* infile); -int ipsw_get_file_size(const char* ipsw, const char* infile, off_t* size); +int ipsw_get_file_size(const char* ipsw, const char* infile, uint64_t* size);  int ipsw_extract_to_file(const char* ipsw, const char* infile, const char* outfile);  int ipsw_extract_to_file_with_progress(const char* ipsw, const char* infile, const char* outfile, int print_progress);  int ipsw_extract_to_memory(const char* ipsw, const char* infile, unsigned char** pbuffer, unsigned int* psize); | 
