minizip-ng/mz_strm_bzip.h

46 lines
1.4 KiB
C
Raw Normal View History

/* mz_strm_bzip.h -- Stream for bzip inflate/deflate
2021-01-23 16:18:11 -08:00
part of the minizip-ng project
2021-01-23 16:18:11 -08:00
Copyright (C) 2010-2021 Nathan Moinvaziri
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_BZIP_H
#define MZ_STREAM_BZIP_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);
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);
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);
int32_t mz_stream_bzip_close(void *stream);
int32_t mz_stream_bzip_error(void *stream);
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);
void* mz_stream_bzip_create(void **stream);
void mz_stream_bzip_delete(void **stream);
void* mz_stream_bzip_get_interface(void);
2017-12-26 12:40:30 -08:00
void bz_internal_error(int errcode);
/***************************************************************************/
#ifdef __cplusplus
}
#endif
#endif