utile.miniz.binding

Undocumented in source.

Members

Aliases

mz_alloc_func
alias mz_alloc_func = void* function(void* opaque, size_t items, size_t size)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
mz_file_needs_keepalive
alias mz_file_needs_keepalive = int function(void* pOpaque)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
mz_file_read_func
alias mz_file_read_func = size_t function(void* pOpaque, ulong mz_file_ofs, void* pBuf, size_t n)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
mz_file_write_func
alias mz_file_write_func = size_t function(void* pOpaque, ulong mz_file_ofs, in void* pBuf, size_t n)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
mz_free_func
alias mz_free_func = void function(void* opaque, void* address)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
mz_realloc_func
alias mz_realloc_func = void* function(void* opaque, void* address, size_t items, size_t size)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
mz_zip_error
alias mz_zip_error = int
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
mz_zip_flags
alias mz_zip_flags = int
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
mz_zip_mode
alias mz_zip_mode = int
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
mz_zip_type
alias mz_zip_type = int
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.

Enums

MZ_ZIP_FLAG_CASE_SENSITIVE
anonymousenum MZ_ZIP_FLAG_CASE_SENSITIVE
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
MZ_ZIP_MAX_IO_BUF_SIZE
anonymousenum MZ_ZIP_MAX_IO_BUF_SIZE
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
MZ_ZIP_MODE_INVALID
anonymousenum MZ_ZIP_MODE_INVALID
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
MZ_ZIP_NO_ERROR
anonymousenum MZ_ZIP_NO_ERROR
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
MZ_ZIP_TYPE_INVALID
anonymousenum MZ_ZIP_TYPE_INVALID
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.

Functions

mz_zip_add_mem_to_archive_file_in_place
int mz_zip_add_mem_to_archive_file_in_place(char* pZip_filename, char* pArchive_name, void* pBuf, size_t buf_size, void* pComment, ushort comment_size, uint level_and_flags)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
mz_zip_add_mem_to_archive_file_in_place_v2
int mz_zip_add_mem_to_archive_file_in_place_v2(char* pZip_filename, char* pArchive_name, void* pBuf, size_t buf_size, void* pComment, ushort comment_size, uint level_and_flags, mz_zip_error* pErr)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
mz_zip_clear_last_error
mz_zip_error mz_zip_clear_last_error(mz_zip_archive* pZip)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
mz_zip_end
int mz_zip_end(mz_zip_archive* pZip)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
mz_zip_extract_archive_file_to_heap
void* mz_zip_extract_archive_file_to_heap(char* pZip_filename, char* pArchive_name, size_t* pSize, uint flags)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
mz_zip_extract_archive_file_to_heap_v2
void* mz_zip_extract_archive_file_to_heap_v2(char* pZip_filename, char* pArchive_name, char* pComment, size_t* pSize, uint flags, mz_zip_error* pErr)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
mz_zip_get_archive_file_start_offset
ulong mz_zip_get_archive_file_start_offset(mz_zip_archive* pZip)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
mz_zip_get_archive_size
ulong mz_zip_get_archive_size(mz_zip_archive* pZip)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
mz_zip_get_central_dir_size
size_t mz_zip_get_central_dir_size(mz_zip_archive* pZip)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
mz_zip_get_cfile
FILE* mz_zip_get_cfile(mz_zip_archive* pZip)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
mz_zip_get_error_string
const(char)* mz_zip_get_error_string(mz_zip_error mz_err)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
mz_zip_get_last_error
mz_zip_error mz_zip_get_last_error(mz_zip_archive* pZip)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
mz_zip_get_mode
mz_zip_mode mz_zip_get_mode(mz_zip_archive* pZip)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
mz_zip_get_type
mz_zip_type mz_zip_get_type(mz_zip_archive* pZip)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
mz_zip_is_zip64
int mz_zip_is_zip64(mz_zip_archive* pZip)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
mz_zip_peek_last_error
mz_zip_error mz_zip_peek_last_error(mz_zip_archive* pZip)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
mz_zip_read_archive_data
size_t mz_zip_read_archive_data(mz_zip_archive* pZip, ulong mz_file_ofs, void* pBuf, size_t n)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
mz_zip_reader_end
int mz_zip_reader_end(mz_zip_archive* pZip)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
mz_zip_reader_extract_file_to_callback
int mz_zip_reader_extract_file_to_callback(mz_zip_archive* pZip, char* pFilename, mz_file_write_func pCallback, void* pOpaque, uint flags)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
mz_zip_reader_extract_file_to_cfile
int mz_zip_reader_extract_file_to_cfile(mz_zip_archive* pZip, char* pArchive_filename, FILE* pFile, uint flags)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
mz_zip_reader_extract_file_to_file
int mz_zip_reader_extract_file_to_file(mz_zip_archive* pZip, char* pArchive_filename, char* pDst_filename, uint flags)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
mz_zip_reader_extract_file_to_heap
void* mz_zip_reader_extract_file_to_heap(mz_zip_archive* pZip, char* pFilename, size_t* pSize, uint flags)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
mz_zip_reader_extract_file_to_mem
int mz_zip_reader_extract_file_to_mem(mz_zip_archive* pZip, char* pFilename, void* pBuf, size_t buf_size, uint flags)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
mz_zip_reader_extract_file_to_mem_no_alloc
int mz_zip_reader_extract_file_to_mem_no_alloc(mz_zip_archive* pZip, char* pFilename, void* pBuf, size_t buf_size, uint flags, void* pUser_read_buf, size_t user_read_buf_size)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
mz_zip_reader_extract_to_callback
int mz_zip_reader_extract_to_callback(mz_zip_archive* pZip, uint mz_file_index, mz_file_write_func pCallback, void* pOpaque, uint flags)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
mz_zip_reader_extract_to_cfile
int mz_zip_reader_extract_to_cfile(mz_zip_archive* pZip, uint mz_file_index, FILE* File, uint flags)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
mz_zip_reader_extract_to_file
int mz_zip_reader_extract_to_file(mz_zip_archive* pZip, uint mz_file_index, char* pDst_filename, uint flags)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
mz_zip_reader_extract_to_heap
void* mz_zip_reader_extract_to_heap(mz_zip_archive* pZip, uint mz_file_index, size_t* pSize, uint flags)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
mz_zip_reader_extract_to_mem
int mz_zip_reader_extract_to_mem(mz_zip_archive* pZip, uint mz_file_index, void* pBuf, size_t buf_size, uint flags)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
mz_zip_reader_extract_to_mem_no_alloc
int mz_zip_reader_extract_to_mem_no_alloc(mz_zip_archive* pZip, uint mz_file_index, void* pBuf, size_t buf_size, uint flags, void* pUser_read_buf, size_t user_read_buf_size)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
mz_zip_reader_file_stat
int mz_zip_reader_file_stat(mz_zip_archive* pZip, uint mz_file_index, mz_zip_archive_file_stat* pStat)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
mz_zip_reader_get_filename
uint mz_zip_reader_get_filename(mz_zip_archive* pZip, uint mz_file_index, char* pFilename, uint filename_buf_size)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
mz_zip_reader_get_num_files
uint mz_zip_reader_get_num_files(mz_zip_archive* pZip)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
mz_zip_reader_init
int mz_zip_reader_init(mz_zip_archive* pZip, ulong size, uint flags)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
mz_zip_reader_init_cfile
int mz_zip_reader_init_cfile(mz_zip_archive* pZip, FILE* pFile, ulong archive_size, uint flags)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
mz_zip_reader_init_file
int mz_zip_reader_init_file(mz_zip_archive* pZip, char* pFilename, uint flags)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
mz_zip_reader_init_file_v2
int mz_zip_reader_init_file_v2(mz_zip_archive* pZip, char* pFilename, uint flags, ulong mz_file_start_ofs, ulong archive_size)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
mz_zip_reader_init_mem
int mz_zip_reader_init_mem(mz_zip_archive* pZip, void* pMem, size_t size, uint flags)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
mz_zip_reader_is_file_a_directory
int mz_zip_reader_is_file_a_directory(mz_zip_archive* pZip, uint mz_file_index)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
mz_zip_reader_is_file_encrypted
int mz_zip_reader_is_file_encrypted(mz_zip_archive* pZip, uint mz_file_index)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
mz_zip_reader_is_file_supported
int mz_zip_reader_is_file_supported(mz_zip_archive* pZip, uint mz_file_index)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
mz_zip_reader_locate_file
int mz_zip_reader_locate_file(mz_zip_archive* pZip, char* pName, char* pComment, uint flags)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
mz_zip_reader_locate_file_v2
int mz_zip_reader_locate_file_v2(mz_zip_archive* pZip, char* pName, char* pComment, uint flags, uint* mz_file_index)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
mz_zip_set_last_error
mz_zip_error mz_zip_set_last_error(mz_zip_archive* pZip, mz_zip_error err_num)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
mz_zip_validate_archive
int mz_zip_validate_archive(mz_zip_archive* pZip, uint flags)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
mz_zip_validate_file
int mz_zip_validate_file(mz_zip_archive* pZip, uint mz_file_index, uint flags)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
mz_zip_validate_file_archive
int mz_zip_validate_file_archive(char* pFilename, uint flags, mz_zip_error* pErr)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
mz_zip_validate_mem_archive
int mz_zip_validate_mem_archive(void* pMem, size_t size, uint flags, mz_zip_error* pErr)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
mz_zip_writer_add_cfile
int mz_zip_writer_add_cfile(mz_zip_archive* pZip, char* pArchive_name, FILE* pSrc_file, ulong size_to_add, ulong* pFile_time, void* pComment, ushort comment_size, uint level_and_flags, char* user_extra_data_local, uint user_extra_data_local_len, char* user_extra_data_central, uint user_extra_data_central_len)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
mz_zip_writer_add_file
int mz_zip_writer_add_file(mz_zip_archive* pZip, char* pArchive_name, char* pSrc_filename, void* pComment, ushort comment_size, uint level_and_flags)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
mz_zip_writer_add_from_zip_reader
int mz_zip_writer_add_from_zip_reader(mz_zip_archive* pZip, mz_zip_archive* pSource_zip, uint src_file_index)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
mz_zip_writer_add_mem
int mz_zip_writer_add_mem(mz_zip_archive* pZip, char* pArchive_name, void* pBuf, size_t buf_size, uint level_and_flags)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
mz_zip_writer_add_mem_ex
int mz_zip_writer_add_mem_ex(mz_zip_archive* pZip, char* pArchive_name, void* pBuf, size_t buf_size, void* pComment, ushort comment_size, uint level_and_flags, ulong uncomp_size, uint uncomp_crc32)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
mz_zip_writer_add_mem_ex_v2
int mz_zip_writer_add_mem_ex_v2(mz_zip_archive* pZip, char* pArchive_name, void* pBuf, size_t buf_size, void* pComment, ushort comment_size, uint level_and_flags, ulong uncomp_size, uint uncomp_crc32, ulong* last_modified, char* user_extra_data_local, uint user_extra_data_local_len, char* user_extra_data_central, uint user_extra_data_central_len)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
mz_zip_writer_end
int mz_zip_writer_end(mz_zip_archive* pZip)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
mz_zip_writer_finalize_archive
int mz_zip_writer_finalize_archive(mz_zip_archive* pZip)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
mz_zip_writer_finalize_heap_archive
int mz_zip_writer_finalize_heap_archive(mz_zip_archive* pZip, void** ppBuf, size_t* pSize)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
mz_zip_writer_init
int mz_zip_writer_init(mz_zip_archive* pZip, ulong existing_size)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
mz_zip_writer_init_cfile
int mz_zip_writer_init_cfile(mz_zip_archive* pZip, FILE* pFile, uint flags)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
mz_zip_writer_init_file
int mz_zip_writer_init_file(mz_zip_archive* pZip, char* pFilename, ulong size_to_reserve_at_beginning)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
mz_zip_writer_init_file_v2
int mz_zip_writer_init_file_v2(mz_zip_archive* pZip, char* pFilename, ulong size_to_reserve_at_beginning, uint flags)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
mz_zip_writer_init_from_reader
int mz_zip_writer_init_from_reader(mz_zip_archive* pZip, char* pFilename)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
mz_zip_writer_init_from_reader_v2
int mz_zip_writer_init_from_reader_v2(mz_zip_archive* pZip, char* pFilename, uint flags)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
mz_zip_writer_init_heap
int mz_zip_writer_init_heap(mz_zip_archive* pZip, size_t size_to_reserve_at_beginning, size_t initial_allocation_size)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
mz_zip_writer_init_heap_v2
int mz_zip_writer_init_heap_v2(mz_zip_archive* pZip, size_t size_to_reserve_at_beginning, size_t initial_allocation_size, uint flags)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
mz_zip_writer_init_v2
int mz_zip_writer_init_v2(mz_zip_archive* pZip, ulong existing_size, uint flags)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
mz_zip_zero_struct
void mz_zip_zero_struct(mz_zip_archive* pZip)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.

Structs

mz_zip_archive
struct mz_zip_archive
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
mz_zip_archive_file_stat
struct mz_zip_archive_file_stat
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
mz_zip_internal_state
struct mz_zip_internal_state
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.

Meta