/LZWHandle.h

https://code.google.com/p/xee/ · C Header · 24 lines · 16 code · 8 blank · 0 comment · 0 complexity · 49aaf8d28ec738afe34a91b4cf85815d MD5 · raw file

  1. #import <XADMaster/CSByteStreamHandle.h>
  2. #import <XADMaster/LZW.h>
  3. extern NSString *LZWInvalidCodeException;
  4. @interface LZWHandle:CSByteStreamHandle
  5. {
  6. BOOL early;
  7. LZW *lzw;
  8. int symbolsize;
  9. int currbyte;
  10. uint8_t buffer[4096];
  11. }
  12. -(id)initWithHandle:(CSHandle *)handle earlyChange:(BOOL)earlychange;
  13. -(void)clearTable;
  14. -(void)resetByteStream;
  15. -(uint8_t)produceByteAtOffset:(off_t)pos;
  16. @end