/CCITTHandle.h
https://code.google.com/p/xee/ · C Header · 37 lines · 27 code · 10 blank · 0 comment · 0 complexity · 2f95c3c2ebd4fec05ee14b49097f3f49 MD5 · raw file
- #import <XADMaster/CSByteStreamHandle.h>
- #import <XADMaster/XADPrefixCode.h>
- extern NSString *CCITTCodeException;
- @interface CCITTFaxHandle:CSByteStreamHandle
- {
- int cols,white;
- int col,colour,bitsleft;
- }
- -(id)initWithHandle:(CSHandle *)handle columns:(int)columns white:(int)whitevalue;
- -(void)resetByteStream;
- -(uint8_t)produceByteAtOffset:(off_t)pos;
- -(void)startNewLine;
- -(void)findNextSpanLength;
- @end
- @interface CCITTFaxT6Handle:CCITTFaxHandle
- {
- int *prevchanges,numprevchanges;
- int *currchanges,numcurrchanges;
- int prevpos,previndex,currpos,currcol,nexthoriz;
- XADPrefixCode *maincode,*whitecode,*blackcode;
- }
- -(id)initWithHandle:(CSHandle *)handle columns:(int)columns white:(int)whitevalue;
- -(void)dealloc;
- -(void)resetByteStream;
- -(void)startNewLine;
- -(void)findNextSpanLength;
- @end