ObjFW  Diff

Differences From Artifact [7e3c51448d]:

To Artifact [6ec34bda0a]:


41
42
43
44
45
46
47

48
49
50
51
52
53
54
}

#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;

#endif

/*!
 * @brief Returns the file name of the entry.
 *
 * @return The file name of the entry
 */







>







41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
}

#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.
 *
 * @return The file name of the entry
 */
84
85
86
87
88
89
90







91

/*!
 * @brief Returns the CRC32 checksum of the entry's file.
 *
 * @return The CRC32 checksum of the entry's file
 */
- (uint32_t)CRC32;







@end







>
>
>
>
>
>
>

85
86
87
88
89
90
91
92
93
94
95
96
97
98
99

/*!
 * @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