```
mz_compat.c:390:62: warning: passing 'uint32_t *' (aka 'unsigned int *') to parameter of type
'int32_t *' (aka 'int *') converts between pointers to integer types with different sign [-Wpointer-sign]
err = mz_zip_get_disk_number_with_cd(compat->handle, &pglobal_info->number_disk_with_CD);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
mz_zip.h:112:70: note: passing argument to parameter 'disk_number_with_cd' here
extern int32_t mz_zip_get_disk_number_with_cd(void *handle, int32_t *disk_number_with_cd);
^
```
* Fix NULL pointer dereference when calling zipOpen*()
or unzOpen2*() with NULL filefunc table.
* Rename dos_date to dosDate in zip/unzip structures to
be compatible with original minizip.
* Add tm struct timestamps to zip/unzip structures and
populate them with the dosDate value for unzip and
use the value passed into it on zip, if dosDate is
zero (mimicing original minizip behaviour.)
* Change zipWriteInFileInZip() return value to be a
status code (ZIP_OK or ZIP_ERRNO) instead of the
number of bytes written. This way it's minizip
compatible.
* Add zipCloseFileInZipRaw64() compatibility wrapper.
* Add these compatibility functions:
unzGetOffset()
unzGetOffset64()
unzSetOffset()
unzSetOffset64()
* Add stub for compatibility: unzGetLocalExtrafield()
It will always return zero for now.
* Add original minizip types for compatiblity:
tm_unz, tm_zip, ZPOS64_T
* Add these minizip (non-compatiblity) APIs:
mz_zip_get_entry()
mz_zip_goto_entry()
* zipOpenNewFileInZip*() to use the default filename of
"-" if filename parameter was NULL. For minizip
compatibility.
* Fix mz_zip_entry_open_int() and mz_zip_entry_read_open()
failing with MZ_PARAM_ERROR in raw mode
* Add/cleanup some date-related comments
* mz_zip_time_t_to_tm() to clear the `tm` structure in
case localtime() call failed.
* Fix mz_zip_tm_to_dosdate() to do the date validation
on the normalized date (the year in particular), not on
the raw value passed by the caller. This makes it work
correctly when year is passed as-is, such as 1990.
The reference minizip was the version that comes with
the latest zlib, currently at 1.2.11.
Consolidated all the path building to use mz_path_combine.
Fixed bug in minizip when using mz_zip_write_entry.
Created structs in minizip and miniunz for keeping all options together.
Fixed bug reading end of zip when using split stream.
Fixed large file support in win32.
Added support for disk splitting into the minizip and miniunz sample apps.
Removed change_dir function from os helpers since it is no longer needed and changing dir causes problems when trying to find the next split archive.
Cleaned up #defines and pushed more into mz.h which was previously named mz.h
Removed NOUNCRYPT and NOCRYPT and instead implemented HAVE_CRYPT which can be configured via CMake USE_CRYPT.
Fixed issues unzipping non-split archives.
Fixed return value on mz_zip_entry_write.
Clean up some logic in the zip cmd tool.
Fixed zipping to non-existant directory.
Fixed passthru stream shouldn't open or close base streams.
Changed make_dir functions to succeed if dir exists.
Fixed compression method check for zip open functions.
Fixed wrong level being passed to bzip2.
Removed unused price_tablegen.c.
Updated CMakeLists.
Added travis yml.