mirror of
https://github.com/zlib-ng/minizip-ng
synced 2025-03-28 21:13:18 +00:00
Added ability to set comment in zip writer.
This commit is contained in:
parent
d5911f4524
commit
0687386d8b
11
mz_zip_rw.c
11
mz_zip_rw.c
@ -1054,6 +1054,7 @@ typedef struct mz_zip_writer_s {
|
||||
mz_zip_writer_entry_cb
|
||||
entry_cb;
|
||||
const char *password;
|
||||
const char *comment;
|
||||
uint8_t *cert_data;
|
||||
int32_t cert_data_size;
|
||||
const char *cert_pwd;
|
||||
@ -1217,10 +1218,12 @@ int32_t mz_zip_writer_close(void *handle)
|
||||
|
||||
if (writer->zip_handle != NULL)
|
||||
{
|
||||
mz_zip_set_version_madeby(writer->zip_handle, MZ_VERSION_MADEBY);
|
||||
if (writer->comment)
|
||||
mz_zip_set_comment(writer->zip_handle, writer->comment);
|
||||
if (writer->zip_cd)
|
||||
mz_zip_writer_zip_cd(writer);
|
||||
|
||||
mz_zip_set_version_madeby(writer->zip_handle, MZ_VERSION_MADEBY);
|
||||
err = mz_zip_close(writer->zip_handle);
|
||||
mz_zip_delete(&writer->zip_handle);
|
||||
}
|
||||
@ -1805,6 +1808,12 @@ void mz_zip_writer_set_password(void *handle, const char *password)
|
||||
writer->password = password;
|
||||
}
|
||||
|
||||
void mz_zip_writer_set_comment(void *handle, const char *comment)
|
||||
{
|
||||
mz_zip_writer *writer = (mz_zip_writer *)handle;
|
||||
writer->comment = comment;
|
||||
}
|
||||
|
||||
void mz_zip_writer_set_raw(void *handle, uint8_t raw)
|
||||
{
|
||||
mz_zip_writer *writer = (mz_zip_writer *)handle;
|
||||
|
@ -227,6 +227,9 @@ int32_t mz_zip_writer_copy_from_reader(void *handle, void *reader);
|
||||
void mz_zip_writer_set_password(void *handle, const char *password);
|
||||
// Password to use for encrypting files in the zip
|
||||
|
||||
void mz_zip_writer_set_comment(void *handle, const char *comment);
|
||||
// Comment to use for the archive
|
||||
|
||||
void mz_zip_writer_set_raw(void *handle, uint8_t raw);
|
||||
// Sets whether or not we should write the entry raw
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user