lzma_decompress.h 286 B

123456789101112131415161718
  1. #ifndef __LZMA_SAMPLE_H__
  2. #define __LZMA_SAMPLE_H__
  3. #ifdef __cplusplus
  4. extern "C"
  5. {
  6. #endif
  7. #include <stdint.h>
  8. #include "vFile.h"
  9. int lzma_decompress_read(vFile* pf, uint8_t *buffer, int size);
  10. void lzma_decompress_finish(void);
  11. #ifdef __cplusplus
  12. }
  13. #endif
  14. #endif