mz_strm_split.h 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. /* mz_strm_split.h -- Stream for split files
  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_SPLIT_H
  9. #define MZ_STREAM_SPLIT_H
  10. #ifdef __cplusplus
  11. extern "C" {
  12. #endif
  13. /***************************************************************************/
  14. int32_t mz_stream_split_open(void *stream, const char *filename, int32_t mode);
  15. int32_t mz_stream_split_is_open(void *stream);
  16. int32_t mz_stream_split_read(void *stream, void *buf, int32_t size);
  17. int32_t mz_stream_split_write(void *stream, const void *buf, int32_t size);
  18. int64_t mz_stream_split_tell(void *stream);
  19. int32_t mz_stream_split_seek(void *stream, int64_t offset, int32_t origin);
  20. int32_t mz_stream_split_close(void *stream);
  21. int32_t mz_stream_split_error(void *stream);
  22. int32_t mz_stream_split_get_prop_int64(void *stream, int32_t prop, int64_t *value);
  23. int32_t mz_stream_split_set_prop_int64(void *stream, int32_t prop, int64_t value);
  24. void* mz_stream_split_create(void **stream);
  25. void mz_stream_split_delete(void **stream);
  26. void* mz_stream_split_get_interface(void);
  27. /***************************************************************************/
  28. #ifdef __cplusplus
  29. }
  30. #endif
  31. #endif