@@ -43,10 +43,11 @@ #ifdef OF_HAVE_PROPERTIES @property (readonly, copy) OFString *fileName, *fileComment; @property (readonly) off_t compressedSize, uncompressedSize; @property (readonly, retain) OFDate *modificationDate; @property (readonly) uint32_t CRC32; +@property (readonly, copy) OFDataArray *extraField; #endif /*! * @brief Returns the file name of the entry. * @@ -86,6 +87,13 @@ * @brief Returns the CRC32 checksum of the entry's file. * * @return The CRC32 checksum of the entry's file */ - (uint32_t)CRC32; + +/*! + * @brief Returns the extra field of the entry. + * + * @return The extra field of the entry + */ +- (OFDataArray*)extraField; @end