@@ -22,10 +22,11 @@ #import "OFDataArray.h" #import "OFArray.h" #import "OFDictionary.h" #import "OFFile.h" #import "OFDeflateStream.h" +#import "OFDeflate64Stream.h" #import "OFChecksumFailedException.h" #import "OFInvalidArgumentException.h" #import "OFInvalidFormatException.h" #import "OFNotImplementedException.h" @@ -500,10 +501,14 @@ break; case 8: /* Deflate */ _stream = [[OFDeflateStream alloc] initWithStream: _file]; break; + case 9: /* Deflate64 */ + _stream = [[OFDeflate64Stream alloc] + initWithStream: _file]; + break; default: @throw [OFNotImplementedException exceptionWithSelector: _cmd object: self]; }