1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
|
#import "XADArchiveParser.h"
@interface XADNowCompressParser:XADArchiveParser
{
int totalentries,currentries;
NSMutableArray *entries,*filesarray;
off_t solidoffset;
}
+(int)requiredHeaderSize;
+(BOOL)recognizeFileWithHandle:(CSHandle *)handle firstBytes:(NSData *)data name:(NSString *)name;
-(void)parse;
-(void)parseDirectoryWithParent:(XADPath *)parent numberOfEntries:(int)numentries;
-(CSHandle *)handleForEntryWithDictionary:(NSDictionary *)dict wantChecksum:(BOOL)checksum;
-(NSString *)formatName;
@end
|