2017-10-05 23:32:57 -07:00
|
|
|
/* mz_strm_bzip.h -- Stream for bzip inflate/deflate
|
2018-05-03 17:59:04 -07:00
|
|
|
Version 2.3.0, May 3rd, 2018
|
2017-10-05 08:38:23 -07:00
|
|
|
part of the MiniZip project
|
2017-10-02 22:11:03 -07:00
|
|
|
|
2018-01-06 08:49:03 -08:00
|
|
|
Copyright (C) 2010-2018 Nathan Moinvaziri
|
2017-10-02 22:11:03 -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_BZIP_H
|
|
|
|
#define _MZ_STREAM_BZIP_H
|
|
|
|
|
|
|
|
#include <stdint.h>
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/***************************************************************************/
|
|
|
|
|
2017-10-05 21:26:34 -07:00
|
|
|
int32_t mz_stream_bzip_open(void *stream, const char *filename, int32_t mode);
|
2017-10-08 21:48:28 -07:00
|
|
|
int32_t mz_stream_bzip_is_open(void *stream);
|
2017-10-05 21:26:34 -07:00
|
|
|
int32_t mz_stream_bzip_read(void *stream, void *buf, int32_t size);
|
|
|
|
int32_t mz_stream_bzip_write(void *stream, const void *buf, int32_t size);
|
2017-10-02 22:11:03 -07:00
|
|
|
int64_t mz_stream_bzip_tell(void *stream);
|
2017-10-05 21:26:34 -07:00
|
|
|
int32_t mz_stream_bzip_seek(void *stream, int64_t offset, int32_t origin);
|
2017-10-02 22:11:03 -07:00
|
|
|
int32_t mz_stream_bzip_close(void *stream);
|
|
|
|
int32_t mz_stream_bzip_error(void *stream);
|
|
|
|
|
2017-10-09 23:36:30 -07:00
|
|
|
int32_t mz_stream_bzip_get_prop_int64(void *stream, int32_t prop, int64_t *value);
|
|
|
|
int32_t mz_stream_bzip_set_prop_int64(void *stream, int32_t prop, int64_t value);
|
2017-10-02 22:11:03 -07:00
|
|
|
|
|
|
|
void* mz_stream_bzip_create(void **stream);
|
|
|
|
void mz_stream_bzip_delete(void **stream);
|
|
|
|
|
2017-10-08 21:48:28 -07:00
|
|
|
void* mz_stream_bzip_get_interface(void);
|
|
|
|
|
2017-12-26 12:40:30 -08:00
|
|
|
void bz_internal_error(int errcode);
|
|
|
|
|
2017-10-02 22:11:03 -07:00
|
|
|
/***************************************************************************/
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|