2017-10-05 23:32:57 -07:00
|
|
|
/* mz_strm_mem.h -- Stream for memory access
|
2021-01-23 16:18:11 -08:00
|
|
|
part of the minizip-ng project
|
2017-10-01 22:42:35 -07:00
|
|
|
|
2021-01-23 16:18:11 -08:00
|
|
|
Copyright (C) 2010-2021 Nathan Moinvaziri
|
|
|
|
https://github.com/zlib-ng/minizip-ng
|
2017-10-01 22:42:35 -07:00
|
|
|
|
|
|
|
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_MEM_H
|
|
|
|
#define MZ_STREAM_MEM_H
|
2017-10-01 22:42:35 -07:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2017-10-02 22:11:03 -07:00
|
|
|
/***************************************************************************/
|
|
|
|
|
2017-10-05 21:26:34 -07:00
|
|
|
int32_t mz_stream_mem_open(void *stream, const char *filename, int32_t mode);
|
2017-10-08 21:48:28 -07:00
|
|
|
int32_t mz_stream_mem_is_open(void *stream);
|
2017-10-05 21:26:34 -07:00
|
|
|
int32_t mz_stream_mem_read(void *stream, void *buf, int32_t size);
|
|
|
|
int32_t mz_stream_mem_write(void *stream, const void *buf, int32_t size);
|
2017-10-01 22:42:35 -07:00
|
|
|
int64_t mz_stream_mem_tell(void *stream);
|
2017-10-05 21:26:34 -07:00
|
|
|
int32_t mz_stream_mem_seek(void *stream, int64_t offset, int32_t origin);
|
2017-10-01 22:42:35 -07:00
|
|
|
int32_t mz_stream_mem_close(void *stream);
|
|
|
|
int32_t mz_stream_mem_error(void *stream);
|
|
|
|
|
2017-10-05 21:26:34 -07:00
|
|
|
void mz_stream_mem_set_buffer(void *stream, void *buf, int32_t size);
|
2018-10-25 22:01:02 -07:00
|
|
|
int32_t mz_stream_mem_get_buffer(void *stream, const void **buf);
|
|
|
|
int32_t mz_stream_mem_get_buffer_at(void *stream, int64_t position, const void **buf);
|
|
|
|
int32_t mz_stream_mem_get_buffer_at_current(void *stream, const void **buf);
|
2018-05-31 13:56:32 -07:00
|
|
|
void mz_stream_mem_get_buffer_length(void *stream, int32_t *length);
|
2018-07-12 15:06:19 -07:00
|
|
|
void mz_stream_mem_set_buffer_limit(void *stream, int32_t limit);
|
2017-10-05 21:26:34 -07:00
|
|
|
void mz_stream_mem_set_grow_size(void *stream, int32_t grow_size);
|
2017-10-01 22:42:35 -07:00
|
|
|
|
|
|
|
void* mz_stream_mem_create(void **stream);
|
|
|
|
void mz_stream_mem_delete(void **stream);
|
|
|
|
|
2017-10-08 21:48:28 -07:00
|
|
|
void* mz_stream_mem_get_interface(void);
|
|
|
|
|
2017-10-02 22:11:03 -07:00
|
|
|
/***************************************************************************/
|
|
|
|
|
2017-10-01 22:42:35 -07:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|