00001
00002
00003
00004
00005
00006
00007 #import "NSObject.h"
00008
00009 #import "CPZEntryInputStreamProtocol.h"
00010
00011 @interface CPZEntryUncompressedInputStream : NSObject <CPZEntryInputStream>
00012 {
00013 long long mOffset;
00014 long long mEnd;
00015 id <CPZArchiveInputStream> mInput;
00016 }
00017
00018 - (id)initWithOffset:(long long)fp8 end:(long long)fp16 input:(id)fp24;
00019 - (void)dealloc;
00020 - (void)readToOwnBuffer:(const char **)fp8 size:(unsigned int *)fp12;
00021 - (unsigned long)readToBuffer:(char *)fp8 size:(unsigned long)fp12;
00022
00023 @end
00024