Differences From Artifact [cd5774f862]:
- File
src/OFZIPArchiveEntry+Private.h
— part of check-in
[630ea6bc5a]
at
2023-07-23 23:35:08
on branch trunk
— OFZIPArchive: Initial support for split archives
This cannot yet extract a file from the archive if the file spans
multiple parts. However, for a multipart archive with multiple files,
all files that only span a single part can be extracted. (user: js, size: 1211) [annotate] [blame] [check-ins using] [more...]
To Artifact [283135a02f]:
- File src/OFZIPArchiveEntry+Private.h — part of check-in [9fd7456e3a] at 2024-03-09 16:11:59 on branch trunk — OFZIPArchive: Fix disk number 0 vs 1 (user: js, size: 1308) [annotate] [blame] [check-ins using] [more...]
1 | 1 2 3 4 5 6 7 8 9 | - + | /* |
| ︙ | |||
26 27 28 29 30 31 32 33 34 35 36 37 | 26 27 28 29 30 31 32 33 34 35 36 37 38 39 | + + |
- (instancetype)of_init OF_METHOD_FAMILY(init);
- (instancetype)of_initWithStream: (OFStream *)stream
OF_METHOD_FAMILY(init) OF_DIRECT;
- (uint64_t)of_writeToStream: (OFStream *)stream OF_DIRECT;
@end
@interface OFMutableZIPArchiveEntry ()
@property (readwrite, nonatomic, setter=of_setStartDiskNumber:)
uint32_t of_startDiskNumber;
@property (readwrite, nonatomic, setter=of_setLocalFileHeaderOffset:)
int64_t of_localFileHeaderOffset;
@end
OF_ASSUME_NONNULL_END
|