2017-10-05 23:32:57 -07:00
|
|
|
/* mz_strm_buf.h -- Stream for buffering reads/writes
|
2018-04-18 20:54:52 -07:00
|
|
|
Version 2.2.9, April 18th, 2018
|
2017-10-05 08:38:23 -07:00
|
|
|
part of the MiniZip project
|
2017-10-01 22:42:35 -07:00
|
|
|
|
|
|
|
This version of ioapi is designed to buffer IO.
|
|
|
|
|
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
|
|
|
|
|
|
|
|
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_BUFFERED_H
|
|
|
|
#define _MZ_STREAM_BUFFERED_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_buffered_open(void *stream, const char *path, int32_t mode);
|
2017-10-08 21:48:28 -07:00
|
|
|
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);
|
2017-10-01 22:42:35 -07:00
|
|
|
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);
|
2017-10-01 22:42:35 -07:00
|
|
|
int32_t mz_stream_buffered_close(void *stream);
|
|
|
|
int32_t mz_stream_buffered_error(void *stream);
|
|
|
|
|
|
|
|
void* mz_stream_buffered_create(void **stream);
|
|
|
|
void mz_stream_buffered_delete(void **stream);
|
|
|
|
|
2017-10-08 21:48:28 -07:00
|
|
|
void* mz_stream_buffered_get_interface(void);
|
|
|
|
|
2017-10-02 22:11:03 -07:00
|
|
|
/***************************************************************************/
|
|
|
|
|
2017-10-01 22:42:35 -07:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|