2018-08-13 23:07:42 -07:00
|
|
|
/* mz_zip_rw.h -- Zip reader/writer
|
2019-05-22 17:50:39 -07:00
|
|
|
Version 2.8.8, May 22, 2019
|
2018-08-13 23:07:42 -07:00
|
|
|
part of the MiniZip project
|
|
|
|
|
2019-01-08 16:07:10 -08:00
|
|
|
Copyright (C) 2010-2019 Nathan Moinvaziri
|
2018-08-13 23:07:42 -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_ZIP_RW_H
|
|
|
|
#define MZ_ZIP_RW_H
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/***************************************************************************/
|
|
|
|
|
|
|
|
typedef int32_t (*mz_zip_reader_overwrite_cb)(void *handle, void *userdata, mz_zip_file *file_info, const char *path);
|
|
|
|
typedef int32_t (*mz_zip_reader_password_cb)(void *handle, void *userdata, mz_zip_file *file_info, char *password, int32_t max_password);
|
2018-10-08 23:31:21 -07:00
|
|
|
typedef int32_t (*mz_zip_reader_progress_cb)(void *handle, void *userdata, mz_zip_file *file_info, int64_t position);
|
2018-08-14 12:49:51 -07:00
|
|
|
typedef int32_t (*mz_zip_reader_entry_cb)(void *handle, void *userdata, mz_zip_file *file_info, const char *path);
|
2018-08-13 23:07:42 -07:00
|
|
|
|
|
|
|
/***************************************************************************/
|
|
|
|
|
|
|
|
int32_t mz_zip_reader_is_open(void *handle);
|
2018-11-20 16:56:21 -08:00
|
|
|
/* Checks to see if the zip file is open */
|
2018-08-13 23:07:42 -07:00
|
|
|
|
|
|
|
int32_t mz_zip_reader_open(void *handle, void *stream);
|
2018-11-20 16:56:21 -08:00
|
|
|
/* Opens zip file from stream */
|
2018-08-13 23:07:42 -07:00
|
|
|
|
|
|
|
int32_t mz_zip_reader_open_file(void *handle, const char *path);
|
2018-11-20 16:56:21 -08:00
|
|
|
/* Opens zip file from a file path */
|
2018-08-13 23:07:42 -07:00
|
|
|
|
|
|
|
int32_t mz_zip_reader_open_file_in_memory(void *handle, const char *path);
|
2018-11-20 16:56:21 -08:00
|
|
|
/* Opens zip file from a file path into memory for faster access */
|
2018-08-13 23:07:42 -07:00
|
|
|
|
|
|
|
int32_t mz_zip_reader_open_buffer(void *handle, uint8_t *buf, int32_t len, uint8_t copy);
|
2018-11-20 16:56:21 -08:00
|
|
|
/* Opens zip file from memory buffer */
|
2018-08-13 23:07:42 -07:00
|
|
|
|
|
|
|
int32_t mz_zip_reader_close(void *handle);
|
2018-11-20 16:56:21 -08:00
|
|
|
/* Closes the zip file */
|
2018-08-13 23:07:42 -07:00
|
|
|
|
|
|
|
/***************************************************************************/
|
|
|
|
|
2018-10-20 10:37:10 -07:00
|
|
|
int32_t mz_zip_reader_unzip_cd(void *handle);
|
2018-11-20 16:56:21 -08:00
|
|
|
/* Unzip the central directory */
|
2018-10-20 10:37:10 -07:00
|
|
|
|
|
|
|
/***************************************************************************/
|
|
|
|
|
2018-08-14 09:20:17 -07:00
|
|
|
int32_t mz_zip_reader_goto_first_entry(void *handle);
|
2018-11-20 16:56:21 -08:00
|
|
|
/* Goto the first entry in the zip file that matches the pattern */
|
2018-08-13 23:07:42 -07:00
|
|
|
|
2018-08-14 09:20:17 -07:00
|
|
|
int32_t mz_zip_reader_goto_next_entry(void *handle);
|
2018-11-20 16:56:21 -08:00
|
|
|
/* Goto the next entry in the zip file that matches the pattern */
|
2018-08-13 23:07:42 -07:00
|
|
|
|
2018-08-14 09:20:17 -07:00
|
|
|
int32_t mz_zip_reader_locate_entry(void *handle, const char *filename, uint8_t ignore_case);
|
2018-11-20 16:56:21 -08:00
|
|
|
/* Locates an entry by filename */
|
2018-08-14 09:20:17 -07:00
|
|
|
|
|
|
|
int32_t mz_zip_reader_entry_open(void *handle);
|
2018-11-20 16:56:21 -08:00
|
|
|
/* Opens an entry for reading */
|
2018-08-14 09:20:17 -07:00
|
|
|
|
|
|
|
int32_t mz_zip_reader_entry_close(void *handle);
|
2018-11-20 16:56:21 -08:00
|
|
|
/* Closes an entry */
|
2018-08-13 23:07:42 -07:00
|
|
|
|
2018-09-19 08:38:51 +00:00
|
|
|
int32_t mz_zip_reader_entry_read(void *handle, void *buf, int32_t len);
|
2018-11-20 16:56:21 -08:00
|
|
|
/* Reads and entry after being opened */
|
2018-08-14 09:20:17 -07:00
|
|
|
|
2018-10-23 09:04:04 -07:00
|
|
|
int32_t mz_zip_reader_entry_has_sign(void *handle);
|
2018-11-20 16:56:21 -08:00
|
|
|
/* Checks to see if the entry has a signature */
|
2018-10-23 09:04:04 -07:00
|
|
|
|
|
|
|
int32_t mz_zip_reader_entry_sign_verify(void *handle);
|
2018-11-20 16:56:21 -08:00
|
|
|
/* Verifies a signature stored with the entry */
|
2018-10-23 09:04:04 -07:00
|
|
|
|
|
|
|
int32_t mz_zip_reader_entry_get_hash(void *handle, uint16_t algorithm, uint8_t *digest, int32_t digest_size);
|
2018-11-20 16:56:21 -08:00
|
|
|
/* Gets a hash algorithm from the entry's extra field */
|
2018-10-23 09:04:04 -07:00
|
|
|
|
2018-10-28 12:36:15 -07:00
|
|
|
int32_t mz_zip_reader_entry_get_first_hash(void *handle, uint16_t *algorithm, uint16_t *digest_size);
|
2018-11-20 16:56:21 -08:00
|
|
|
/* Gets the most secure hash algorithm from the entry's extra field */
|
2018-10-26 20:00:52 -07:00
|
|
|
|
2018-08-14 12:49:51 -07:00
|
|
|
int32_t mz_zip_reader_entry_get_info(void *handle, mz_zip_file **file_info);
|
2018-11-20 16:56:21 -08:00
|
|
|
/* Gets the current entry file info */
|
2018-08-14 12:49:51 -07:00
|
|
|
|
2018-08-23 17:03:03 -07:00
|
|
|
int32_t mz_zip_reader_entry_is_dir(void *handle);
|
2018-11-20 16:56:21 -08:00
|
|
|
/* Gets the current entry is a directory */
|
2018-08-23 17:03:03 -07:00
|
|
|
|
2018-08-14 09:20:17 -07:00
|
|
|
int32_t mz_zip_reader_entry_save(void *handle, void *stream, mz_stream_write_cb write_cb);
|
2018-11-20 16:56:21 -08:00
|
|
|
/* Save the current entry to a steam */
|
2018-08-13 23:07:42 -07:00
|
|
|
|
2018-08-14 09:20:17 -07:00
|
|
|
int32_t mz_zip_reader_entry_save_process(void *handle, void *stream, mz_stream_write_cb write_cb);
|
2018-11-20 16:56:21 -08:00
|
|
|
/* Saves a portion of the current entry to a stream callback */
|
2018-08-13 23:07:42 -07:00
|
|
|
|
2018-08-14 09:20:17 -07:00
|
|
|
int32_t mz_zip_reader_entry_save_file(void *handle, const char *path);
|
2018-11-20 16:56:21 -08:00
|
|
|
/* Save the current entry to a file */
|
2018-08-13 23:07:42 -07:00
|
|
|
|
2018-08-14 09:20:17 -07:00
|
|
|
int32_t mz_zip_reader_entry_save_buffer(void *handle, void *buf, int32_t len);
|
2018-11-20 16:56:21 -08:00
|
|
|
/* Save the current entry to a memory buffer */
|
2018-08-13 23:07:42 -07:00
|
|
|
|
2018-08-14 09:20:17 -07:00
|
|
|
int32_t mz_zip_reader_entry_save_buffer_length(void *handle);
|
2018-11-20 16:56:21 -08:00
|
|
|
/* Gets the length of the buffer required to save */
|
2018-08-13 23:07:42 -07:00
|
|
|
|
2018-08-14 09:20:17 -07:00
|
|
|
/***************************************************************************/
|
|
|
|
|
2018-08-13 23:07:42 -07:00
|
|
|
int32_t mz_zip_reader_save_all(void *handle, const char *destination_dir);
|
2018-11-20 16:56:21 -08:00
|
|
|
/* Save all files into a directory */
|
2018-08-13 23:07:42 -07:00
|
|
|
|
|
|
|
/***************************************************************************/
|
|
|
|
|
|
|
|
void mz_zip_reader_set_pattern(void *handle, const char *pattern, uint8_t ignore_case);
|
2018-11-20 16:56:21 -08:00
|
|
|
/* Sets the match pattern for entries in the zip file, if null all entries are matched */
|
2018-08-13 23:07:42 -07:00
|
|
|
|
|
|
|
void mz_zip_reader_set_password(void *handle, const char *password);
|
2018-11-20 16:56:21 -08:00
|
|
|
/* Sets the password required for extraction */
|
2018-08-13 23:07:42 -07:00
|
|
|
|
|
|
|
void mz_zip_reader_set_raw(void *handle, uint8_t raw);
|
2018-11-20 16:56:21 -08:00
|
|
|
/* Sets whether or not it should save the entry raw */
|
2018-08-13 23:07:42 -07:00
|
|
|
|
|
|
|
int32_t mz_zip_reader_get_raw(void *handle, uint8_t *raw);
|
2018-11-20 16:56:21 -08:00
|
|
|
/* Gets whether or not it should save the entry raw */
|
2018-08-27 08:30:57 -07:00
|
|
|
|
2018-11-23 10:07:35 -08:00
|
|
|
int32_t mz_zip_reader_get_zip_cd(void *handle, uint8_t *zip_cd);
|
|
|
|
/* Gets whether or not the archive has zipped cd */
|
|
|
|
|
2018-11-13 14:50:32 -08:00
|
|
|
int32_t mz_zip_reader_get_comment(void *handle, const char **comment);
|
2018-11-20 16:56:21 -08:00
|
|
|
/* Gets the comment for the central directory */
|
2018-11-13 14:50:32 -08:00
|
|
|
|
2018-10-30 13:59:17 -07:00
|
|
|
void mz_zip_reader_set_encoding(void *handle, int32_t encoding);
|
2018-11-20 16:56:21 -08:00
|
|
|
/* Sets whether or not it should support cp437 in zip file names */
|
2018-08-13 23:07:42 -07:00
|
|
|
|
2018-10-28 16:41:20 -07:00
|
|
|
void mz_zip_reader_set_sign_required(void *handle, uint8_t sign_required);
|
2018-11-20 16:56:21 -08:00
|
|
|
/* Sets whether or not it a signature is required */
|
2018-10-28 16:41:20 -07:00
|
|
|
|
2018-08-13 23:07:42 -07:00
|
|
|
void mz_zip_reader_set_overwrite_cb(void *handle, void *userdata, mz_zip_reader_overwrite_cb cb);
|
2018-11-20 16:56:21 -08:00
|
|
|
/* Callback for what to do when a file is being overwritten */
|
2018-08-13 23:07:42 -07:00
|
|
|
|
|
|
|
void mz_zip_reader_set_password_cb(void *handle, void *userdata, mz_zip_reader_password_cb cb);
|
2018-11-20 16:56:21 -08:00
|
|
|
/* Callback for when a password is required and hasn't been set */
|
2018-08-13 23:07:42 -07:00
|
|
|
|
|
|
|
void mz_zip_reader_set_progress_cb(void *handle, void *userdata, mz_zip_reader_progress_cb cb);
|
2018-11-20 16:56:21 -08:00
|
|
|
/* Callback for extraction progress */
|
2018-08-13 23:07:42 -07:00
|
|
|
|
2018-09-18 12:06:54 +02:00
|
|
|
void mz_zip_reader_set_progress_interval(void *handle, uint32_t milliseconds);
|
2018-11-20 16:56:21 -08:00
|
|
|
/* Let at least milliseconds pass between calls to progress callback */
|
2018-09-18 12:06:54 +02:00
|
|
|
|
2018-08-13 23:07:42 -07:00
|
|
|
void mz_zip_reader_set_entry_cb(void *handle, void *userdata, mz_zip_reader_entry_cb cb);
|
2018-11-20 16:56:21 -08:00
|
|
|
/* Callback for zip file entries */
|
2018-08-13 23:07:42 -07:00
|
|
|
|
|
|
|
int32_t mz_zip_reader_get_zip_handle(void *handle, void **zip_handle);
|
2018-11-20 16:56:21 -08:00
|
|
|
/* Gets the underlying zip instance handle */
|
2018-08-13 23:07:42 -07:00
|
|
|
|
|
|
|
void* mz_zip_reader_create(void **handle);
|
2018-11-20 16:56:21 -08:00
|
|
|
/* Create new instance of zip reader */
|
2018-08-13 23:07:42 -07:00
|
|
|
|
|
|
|
void mz_zip_reader_delete(void **handle);
|
2018-11-20 16:56:21 -08:00
|
|
|
/* Delete instance of zip reader */
|
2018-08-13 23:07:42 -07:00
|
|
|
|
|
|
|
/***************************************************************************/
|
|
|
|
|
|
|
|
typedef int32_t (*mz_zip_writer_overwrite_cb)(void *handle, void *userdata, const char *path);
|
|
|
|
typedef int32_t (*mz_zip_writer_password_cb)(void *handle, void *userdata, mz_zip_file *file_info, char *password, int32_t max_password);
|
2018-10-08 23:31:21 -07:00
|
|
|
typedef int32_t (*mz_zip_writer_progress_cb)(void *handle, void *userdata, mz_zip_file *file_info, int64_t position);
|
2018-08-13 23:07:42 -07:00
|
|
|
typedef int32_t (*mz_zip_writer_entry_cb)(void *handle, void *userdata, mz_zip_file *file_info);
|
|
|
|
|
|
|
|
/***************************************************************************/
|
|
|
|
|
|
|
|
int32_t mz_zip_writer_is_open(void *handle);
|
2018-11-20 16:56:21 -08:00
|
|
|
/* Checks to see if the zip file is open */
|
2018-08-13 23:07:42 -07:00
|
|
|
|
|
|
|
int32_t mz_zip_writer_open(void *handle, void *stream);
|
2018-11-20 16:56:21 -08:00
|
|
|
/* Opens zip file from stream */
|
2018-08-13 23:07:42 -07:00
|
|
|
|
|
|
|
int32_t mz_zip_writer_open_file(void *handle, const char *path, int64_t disk_size, uint8_t append);
|
2018-11-20 16:56:21 -08:00
|
|
|
/* Opens zip file from a file path */
|
2018-08-13 23:07:42 -07:00
|
|
|
|
|
|
|
int32_t mz_zip_writer_open_file_in_memory(void *handle, const char *path);
|
2018-11-20 16:56:21 -08:00
|
|
|
/* Opens zip file from a file path into memory for faster access */
|
2018-08-13 23:07:42 -07:00
|
|
|
|
|
|
|
int32_t mz_zip_writer_close(void *handle);
|
2018-11-20 16:56:21 -08:00
|
|
|
/* Closes the zip file */
|
2018-08-13 23:07:42 -07:00
|
|
|
|
|
|
|
/***************************************************************************/
|
|
|
|
|
2018-10-27 18:19:18 -07:00
|
|
|
int32_t mz_zip_writer_zip_cd(void *handle);
|
2018-11-20 16:56:21 -08:00
|
|
|
/* Zip the central directory */
|
2018-10-20 10:37:10 -07:00
|
|
|
|
|
|
|
/***************************************************************************/
|
|
|
|
|
2018-08-14 09:20:17 -07:00
|
|
|
int32_t mz_zip_writer_entry_open(void *handle, mz_zip_file *file_info);
|
2018-11-20 16:56:21 -08:00
|
|
|
/* Opens an entry in the zip file for writing */
|
2018-08-14 09:20:17 -07:00
|
|
|
|
|
|
|
int32_t mz_zip_writer_entry_close(void *handle);
|
2018-11-20 16:56:21 -08:00
|
|
|
/* Closes entry in zip file */
|
2018-08-14 09:20:17 -07:00
|
|
|
|
|
|
|
int32_t mz_zip_writer_entry_write(void *handle, const void *buf, int32_t len);
|
2018-11-20 16:56:21 -08:00
|
|
|
/* Writes data into entry for zip */
|
2018-08-14 09:20:17 -07:00
|
|
|
|
2018-10-25 19:35:50 -07:00
|
|
|
int32_t mz_zip_writer_entry_sign(void *handle, uint8_t *message, int32_t message_size,
|
2018-11-05 12:32:19 -08:00
|
|
|
uint8_t *cert_data, int32_t cert_data_size, const char *cert_pwd);
|
2018-11-20 16:56:21 -08:00
|
|
|
/* Signs uncompressed content of entry, call before closing */
|
2018-10-23 09:04:04 -07:00
|
|
|
|
2018-08-14 09:20:17 -07:00
|
|
|
/***************************************************************************/
|
|
|
|
|
2018-08-13 23:07:42 -07:00
|
|
|
int32_t mz_zip_writer_add(void *handle, void *stream, mz_stream_read_cb read_cb);
|
2018-11-20 16:56:21 -08:00
|
|
|
/* Writes all data to the currently open entry in the zip */
|
2018-08-13 23:07:42 -07:00
|
|
|
|
|
|
|
int32_t mz_zip_writer_add_process(void *handle, void *stream, mz_stream_read_cb read_cb);
|
2018-11-20 16:56:21 -08:00
|
|
|
/* Writes a portion of data to the currently open entry in the zip */
|
2018-08-13 23:07:42 -07:00
|
|
|
|
|
|
|
int32_t mz_zip_writer_add_info(void *handle, void *stream, mz_stream_read_cb read_cb, mz_zip_file *file_info);
|
2018-11-20 16:56:21 -08:00
|
|
|
/* Adds an entry to the zip based on the info */
|
2018-08-13 23:07:42 -07:00
|
|
|
|
2018-08-13 23:20:02 -07:00
|
|
|
int32_t mz_zip_writer_add_buffer(void *handle, void *buf, int32_t len, mz_zip_file *file_info);
|
2018-11-20 16:56:21 -08:00
|
|
|
/* Adds an entry to the zip with a memory buffer */
|
2018-08-13 23:07:42 -07:00
|
|
|
|
|
|
|
int32_t mz_zip_writer_add_file(void *handle, const char *path, const char *filename_in_zip);
|
2018-11-20 16:56:21 -08:00
|
|
|
/* Adds an entry to the zip from a file */
|
2018-08-13 23:07:42 -07:00
|
|
|
|
2018-10-25 19:35:50 -07:00
|
|
|
int32_t mz_zip_writer_add_path(void *handle, const char *path, const char *root_path, uint8_t include_path,
|
|
|
|
uint8_t recursive);
|
2018-11-20 16:56:21 -08:00
|
|
|
/* Enumerates a directory or pattern and adds entries to the zip */
|
2018-08-13 23:07:42 -07:00
|
|
|
|
|
|
|
int32_t mz_zip_writer_copy_from_reader(void *handle, void *reader);
|
2018-11-20 16:56:21 -08:00
|
|
|
/* Adds an entry from a zip reader instance */
|
2018-08-13 23:07:42 -07:00
|
|
|
|
|
|
|
/***************************************************************************/
|
|
|
|
|
|
|
|
void mz_zip_writer_set_password(void *handle, const char *password);
|
2018-11-20 16:56:21 -08:00
|
|
|
/* Password to use for encrypting files in the zip */
|
2018-08-13 23:07:42 -07:00
|
|
|
|
2018-11-12 08:14:58 -08:00
|
|
|
void mz_zip_writer_set_comment(void *handle, const char *comment);
|
2018-11-20 16:56:21 -08:00
|
|
|
/* Comment to use for the archive */
|
2018-11-12 08:14:58 -08:00
|
|
|
|
2018-08-13 23:07:42 -07:00
|
|
|
void mz_zip_writer_set_raw(void *handle, uint8_t raw);
|
2018-11-20 16:56:21 -08:00
|
|
|
/* Sets whether or not we should write the entry raw */
|
2018-08-13 23:07:42 -07:00
|
|
|
|
|
|
|
int32_t mz_zip_writer_get_raw(void *handle, uint8_t *raw);
|
2018-11-20 16:56:21 -08:00
|
|
|
/* Gets whether or not we should write the entry raw */
|
2018-08-13 23:07:42 -07:00
|
|
|
|
|
|
|
void mz_zip_writer_set_aes(void *handle, uint8_t aes);
|
2018-11-20 16:56:21 -08:00
|
|
|
/* Use aes encryption when adding files in zip */
|
2018-08-13 23:07:42 -07:00
|
|
|
|
2018-10-08 23:31:21 -07:00
|
|
|
void mz_zip_writer_set_compress_method(void *handle, uint16_t compress_method);
|
2018-11-20 16:56:21 -08:00
|
|
|
/* Sets the compression method when adding files in zip */
|
2018-08-13 23:07:42 -07:00
|
|
|
|
|
|
|
void mz_zip_writer_set_compress_level(void *handle, int16_t compress_level);
|
2018-11-20 16:56:21 -08:00
|
|
|
/* Sets the compression level when adding files in zip */
|
2018-08-13 23:07:42 -07:00
|
|
|
|
2019-05-05 12:24:08 -07:00
|
|
|
void mz_zip_writer_set_follow_links(void *handle, uint8_t follow_links);
|
2019-05-05 20:13:58 -07:00
|
|
|
/* Follow symbolic links when traversing directories and files to add */
|
|
|
|
|
|
|
|
void mz_zip_writer_set_store_links(void *handle, uint8_t store_links);
|
|
|
|
/* Store symbolic links in zip file */
|
2019-05-05 12:24:08 -07:00
|
|
|
|
2018-11-23 10:07:35 -08:00
|
|
|
void mz_zip_writer_set_zip_cd(void *handle, uint8_t zip_cd);
|
2018-11-20 16:56:21 -08:00
|
|
|
/* Sets additional flags to be set when adding files in zip */
|
2018-10-20 10:37:10 -07:00
|
|
|
|
2018-11-05 12:32:19 -08:00
|
|
|
int32_t mz_zip_writer_set_certificate(void *handle, const char *cert_path, const char *cert_pwd);
|
2018-11-20 16:56:21 -08:00
|
|
|
/* Sets the certificate and timestamp url to use for signing when adding files in zip */
|
2018-10-23 09:04:04 -07:00
|
|
|
|
2018-08-13 23:07:42 -07:00
|
|
|
void mz_zip_writer_set_overwrite_cb(void *handle, void *userdata, mz_zip_writer_overwrite_cb cb);
|
2018-11-20 16:56:21 -08:00
|
|
|
/* Callback for what to do when zip file already exists */
|
2018-08-13 23:07:42 -07:00
|
|
|
|
|
|
|
void mz_zip_writer_set_password_cb(void *handle, void *userdata, mz_zip_writer_password_cb cb);
|
2018-11-20 16:56:21 -08:00
|
|
|
/* Callback for ask if a password is required for adding */
|
2018-08-13 23:07:42 -07:00
|
|
|
|
|
|
|
void mz_zip_writer_set_progress_cb(void *handle, void *userdata, mz_zip_writer_progress_cb cb);
|
2018-11-20 16:56:21 -08:00
|
|
|
/* Callback for compression progress */
|
2018-08-13 23:07:42 -07:00
|
|
|
|
2018-09-18 12:06:54 +02:00
|
|
|
void mz_zip_writer_set_progress_interval(void *handle, uint32_t milliseconds);
|
2018-11-20 16:56:21 -08:00
|
|
|
/* Let at least milliseconds pass between calls to progress callback */
|
2018-09-18 12:06:54 +02:00
|
|
|
|
2018-08-13 23:07:42 -07:00
|
|
|
void mz_zip_writer_set_entry_cb(void *handle, void *userdata, mz_zip_writer_entry_cb cb);
|
2018-11-20 16:56:21 -08:00
|
|
|
/* Callback for zip file entries */
|
2018-08-13 23:07:42 -07:00
|
|
|
|
|
|
|
int32_t mz_zip_writer_get_zip_handle(void *handle, void **zip_handle);
|
2018-11-20 16:56:21 -08:00
|
|
|
/* Gets the underlying zip handle */
|
2018-08-13 23:07:42 -07:00
|
|
|
|
|
|
|
void* mz_zip_writer_create(void **handle);
|
2018-11-20 16:56:21 -08:00
|
|
|
/* Create new instance of zip writer */
|
2018-08-13 23:07:42 -07:00
|
|
|
|
|
|
|
void mz_zip_writer_delete(void **handle);
|
2018-11-20 16:56:21 -08:00
|
|
|
/* Delete instance of zip writer */
|
2018-08-13 23:07:42 -07:00
|
|
|
|
|
|
|
/***************************************************************************/
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|