mirror of
https://github.com/zlib-ng/minizip-ng
synced 2025-03-28 21:13:18 +00:00
Added function to get stream pointer used for mz_zip_open.
This commit is contained in:
parent
0b6059fc53
commit
b994caeab9
14
mz_zip.c
14
mz_zip.c
@ -614,6 +614,9 @@ int32_t mz_zip_close(void *handle)
|
||||
if (zip->comment)
|
||||
MZ_FREE(zip->comment);
|
||||
|
||||
zip->stream = NULL;
|
||||
zip->cd_stream = NULL;
|
||||
|
||||
return err;
|
||||
}
|
||||
|
||||
@ -660,6 +663,17 @@ int32_t mz_zip_set_version_madeby(void *handle, uint16_t version_madeby)
|
||||
return MZ_OK;
|
||||
}
|
||||
|
||||
int32_t mz_zip_get_stream(void *handle, void **stream)
|
||||
{
|
||||
mz_zip *zip = (mz_zip *)handle;
|
||||
if (zip == NULL || stream == NULL)
|
||||
return MZ_PARAM_ERROR;
|
||||
*stream = zip->stream;
|
||||
if (*stream == NULL)
|
||||
return MZ_EXIST_ERROR;
|
||||
return MZ_OK;
|
||||
}
|
||||
|
||||
// Get info about the current file in the zip file
|
||||
static int32_t mz_zip_entry_read_header(void *stream, uint8_t local, mz_zip_file *file_info, void *file_info_stream)
|
||||
{
|
||||
|
3
mz_zip.h
3
mz_zip.h
@ -89,6 +89,9 @@ int32_t mz_zip_get_version_madeby(void *handle, uint16_t *version_madeby);
|
||||
int32_t mz_zip_set_version_madeby(void *handle, uint16_t version_madeby);
|
||||
// Set the version made by used for writing zip file
|
||||
|
||||
int32_t mz_zip_get_stream(void *handle, void **stream);
|
||||
// Get a pointer to the stream used to open
|
||||
|
||||
/***************************************************************************/
|
||||
|
||||
int32_t mz_zip_entry_write_open(void *handle, const mz_zip_file *file_info,
|
||||
|
Loading…
x
Reference in New Issue
Block a user