2017-10-05 23:32:57 -07:00
|
|
|
/* mz_strm_mem.h -- Stream for memory access
|
2018-05-03 17:59:04 -07:00
|
|
|
Version 2.3.0, May 3rd, 2018
|
2017-10-05 21:26:34 -07:00
|
|
|
part of MiniZip project
|
2017-10-01 22:42:35 -07:00
|
|
|
|
2018-01-06 08:49:03 -08:00
|
|
|
Copyright (C) 2010-2018 Nathan Moinvaziri
|
2017-10-01 22:42:35 -07:00
|
|
|
https://github.com/nmoinvaz/minizip
|
|
|
|
Copyright (C) 2003 Justin Fletcher
|
|
|
|
Copyright (C) 1998-2003 Gilles Vollant
|
|
|
|
|
|
|
|
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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _MZ_STREAM_MEM_H
|
|
|
|
#define _MZ_STREAM_MEM_H
|
|
|
|
|
|
|
|
#include <stdint.h>
|
|
|
|
|
|
|
|
#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);
|
2017-10-20 07:59:39 -07:00
|
|
|
int32_t mz_stream_mem_get_buffer(void *stream, void **buf);
|
|
|
|
int32_t mz_stream_mem_get_buffer_at(void *stream, int64_t position, void **buf);
|
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
|