/LZWHandle.h
https://code.google.com/p/xee/ · C Header · 24 lines · 16 code · 8 blank · 0 comment · 0 complexity · 49aaf8d28ec738afe34a91b4cf85815d MD5 · raw file
- #import <XADMaster/CSByteStreamHandle.h>
- #import <XADMaster/LZW.h>
- extern NSString *LZWInvalidCodeException;
- @interface LZWHandle:CSByteStreamHandle
- {
- BOOL early;
- LZW *lzw;
- int symbolsize;
- int currbyte;
- uint8_t buffer[4096];
- }
- -(id)initWithHandle:(CSHandle *)handle earlyChange:(BOOL)earlychange;
- -(void)clearTable;
- -(void)resetByteStream;
- -(uint8_t)produceByteAtOffset:(off_t)pos;
- @end