mz_strm_os.h 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. /* mz_sstrm_os.h -- Stream for filesystem access
  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_OS_H
  9. #define MZ_STREAM_OS_H
  10. #ifdef __cplusplus
  11. extern "C" {
  12. #endif
  13. /***************************************************************************/
  14. int32_t mz_stream_os_open(void *stream, const char *path, int32_t mode);
  15. int32_t mz_stream_os_is_open(void *stream);
  16. int32_t mz_stream_os_read(void *stream, void *buf, int32_t size);
  17. int32_t mz_stream_os_write(void *stream, const void *buf, int32_t size);
  18. int64_t mz_stream_os_tell(void *stream);
  19. int32_t mz_stream_os_seek(void *stream, int64_t offset, int32_t origin);
  20. int32_t mz_stream_os_close(void *stream);
  21. int32_t mz_stream_os_error(void *stream);
  22. void* mz_stream_os_create(void **stream);
  23. void mz_stream_os_delete(void **stream);
  24. void* mz_stream_os_get_interface(void);
  25. /***************************************************************************/
  26. #ifdef __cplusplus
  27. }
  28. #endif
  29. #endif