@@ -30,11 +30,11 @@ * @brief A class which represents an entry in an LHA archive. */ @interface OFLHAArchiveEntry: OFObject { OFString *_fileName, *_Nullable _directoryName, *_compressionMethod; - uint32_t _compressedSize, _uncompressedSize; + unsigned long long _compressedSize, _uncompressedSize; OFDate *_modificationDate; uint8_t _headerLevel; uint16_t _CRC16; uint8_t _operatingSystemIdentifier; OFString *_Nullable _fileComment; @@ -55,16 +55,16 @@ @property (readonly, copy, nonatomic) OFString *compressionMethod; /** * @brief The compressed size of the entry's file. */ -@property (readonly, nonatomic) uint32_t compressedSize; +@property (readonly, nonatomic) unsigned long long compressedSize; /** * @brief The uncompressed size of the entry's file. */ -@property (readonly, nonatomic) uint32_t uncompressedSize; +@property (readonly, nonatomic) unsigned long long uncompressedSize; /** * @brief The modification date of the file. */ @property (readonly, retain, nonatomic) OFDate *modificationDate;