minizip-ng/mz_strm_buf.h

43 lines
1.3 KiB
C
Raw Normal View History

/* mz_strm_buf.h -- Stream for buffering reads/writes
2021-01-23 16:18:11 -08:00
part of the minizip-ng project
This version of ioapi is designed to buffer IO.
2023-02-16 13:14:21 -08:00
Copyright (C) Nathan Moinvaziri
2021-01-23 16:18:11 -08:00
https://github.com/zlib-ng/minizip-ng
This program is distributed under the terms of the same license as zlib.
See the accompanying LICENSE file for the full text of the license.
*/
2018-05-09 09:42:31 -07:00
#ifndef MZ_STREAM_BUFFERED_H
#define MZ_STREAM_BUFFERED_H
#ifdef __cplusplus
extern "C" {
#endif
/***************************************************************************/
2017-10-05 21:26:34 -07:00
int32_t mz_stream_buffered_open(void *stream, const char *path, int32_t mode);
int32_t mz_stream_buffered_is_open(void *stream);
2017-10-05 21:26:34 -07:00
int32_t mz_stream_buffered_read(void *stream, void *buf, int32_t size);
int32_t mz_stream_buffered_write(void *stream, const void *buf, int32_t size);
int64_t mz_stream_buffered_tell(void *stream);
2017-10-05 21:26:34 -07:00
int32_t mz_stream_buffered_seek(void *stream, int64_t offset, int32_t origin);
int32_t mz_stream_buffered_close(void *stream);
int32_t mz_stream_buffered_error(void *stream);
2024-11-01 16:30:39 -07:00
void *mz_stream_buffered_create(void);
void mz_stream_buffered_delete(void **stream);
2024-11-01 16:30:39 -07:00
void *mz_stream_buffered_get_interface(void);
/***************************************************************************/
#ifdef __cplusplus
}
#endif
#endif