123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114 |
- #ifndef LHASA_LHA_DECODER_H
- #define LHASA_LHA_DECODER_H
- #include "public/lha_decoder.h"
- struct _LHADecoderType {
-
- int (*init)(void *extra_data,
- LHADecoderCallback callback,
- void *callback_data);
-
- void (*free)(void *extra_data);
-
- size_t (*read)(void *extra_data, uint8_t *buf);
-
- size_t extra_size;
-
- size_t max_read;
-
- size_t block_size;
- };
- struct _LHADecoder {
-
- LHADecoderType *dtype;
-
- LHADecoderProgressCallback progress_callback;
- void *progress_callback_data;
-
- unsigned int last_block, total_blocks;
-
- size_t stream_pos, stream_length;
-
- unsigned int outbuf_pos, outbuf_len;
- uint8_t *outbuf;
-
- unsigned int decoder_failed;
-
- uint16_t crc;
- };
- #endif
|