Merge pull request #113 from iosphere/zipArchiveProgressEvent-type

Report file size as unsigned long long to delegate
This commit is contained in:
Douglas Bumby
2015-04-06 14:59:07 -04:00
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -58,7 +58,7 @@
- (void)zipArchiveWillUnzipFileAtIndex:(NSInteger)fileIndex totalFiles:(NSInteger)totalFiles archivePath:(NSString *)archivePath fileInfo:(unz_file_info)fileInfo;
- (void)zipArchiveDidUnzipFileAtIndex:(NSInteger)fileIndex totalFiles:(NSInteger)totalFiles archivePath:(NSString *)archivePath fileInfo:(unz_file_info)fileInfo;
- (void)zipArchiveProgressEvent:(NSInteger)loaded total:(NSInteger)total;
- (void)zipArchiveProgressEvent:(unsigned long long)loaded total:(unsigned long long)total;
@end
#endif /* _SSZIPARCHIVE_H */