mz_strm_bzip.h 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. /* mz_strm_bzip.h -- Stream for bzip inflate/deflate
  2. part of the minizip-ng project
  3. Copyright (C) 2010-2021 Nathan Moinvaziri
  4. https://github.com/zlib-ng/minizip-ng
  5. This program is distributed under the terms of the same license as zlib.
  6. See the accompanying LICENSE file for the full text of the license.
  7. */
  8. #ifndef MZ_STREAM_BZIP_H
  9. #define MZ_STREAM_BZIP_H
  10. #ifdef __cplusplus
  11. extern "C" {
  12. #endif
  13. /***************************************************************************/
  14. int32_t mz_stream_bzip_open(void *stream, const char *filename, int32_t mode);
  15. int32_t mz_stream_bzip_is_open(void *stream);
  16. int32_t mz_stream_bzip_read(void *stream, void *buf, int32_t size);
  17. int32_t mz_stream_bzip_write(void *stream, const void *buf, int32_t size);
  18. int64_t mz_stream_bzip_tell(void *stream);
  19. int32_t mz_stream_bzip_seek(void *stream, int64_t offset, int32_t origin);
  20. int32_t mz_stream_bzip_close(void *stream);
  21. int32_t mz_stream_bzip_error(void *stream);
  22. int32_t mz_stream_bzip_get_prop_int64(void *stream, int32_t prop, int64_t *value);
  23. int32_t mz_stream_bzip_set_prop_int64(void *stream, int32_t prop, int64_t value);
  24. void* mz_stream_bzip_create(void **stream);
  25. void mz_stream_bzip_delete(void **stream);
  26. void* mz_stream_bzip_get_interface(void);
  27. void bz_internal_error(int errcode);
  28. /***************************************************************************/
  29. #ifdef __cplusplus
  30. }
  31. #endif
  32. #endif