diff --git a/miniunz.c b/miniunz.c index fef9317..dad92a0 100644 --- a/miniunz.c +++ b/miniunz.c @@ -22,9 +22,8 @@ #include #include -#include "mzstrm.h" - -#include "unzip.h" +#include "mz_strm.h" +#include "mz_unzip.h" /***************************************************************************/ diff --git a/minizip.c b/minizip.c index 2617d5c..fc45417 100755 --- a/minizip.c +++ b/minizip.c @@ -22,9 +22,8 @@ #include #include -#include "zip.h" - -#include "mzstrm.h" +#include "mz_zip.h" +#include "mz_strm.h" /***************************************************************************/ diff --git a/mz_compat.c b/mz_compat.c index ab0e4ef..2d43586 100644 --- a/mz_compat.c +++ b/mz_compat.c @@ -17,8 +17,8 @@ #include #include -#include "zip.h" -#include "unzip.h" +#include "mz_zip.h" +#include "mz_unzip.h" #include "mz_compat.h" diff --git a/mz_strm.c b/mz_strm.c index 1ecdece..ae3a281 100755 --- a/mz_strm.c +++ b/mz_strm.c @@ -19,7 +19,7 @@ #include -#include "mzstrm.h" +#include "mz_strm.h" /***************************************************************************/ diff --git a/mz_strm.h b/mz_strm.h index 659c235..c4fe154 100755 --- a/mz_strm.h +++ b/mz_strm.h @@ -115,7 +115,7 @@ void mz_stream_passthru_delete(void **stream); /***************************************************************************/ #if !defined(_WIN32) && !defined(USEWIN32IOAPI) -#include "mzstrm_posix.h" +#include "mz_strm_posix.h" #define mz_stream_os_open mz_stream_posix_open #define mz_stream_os_is_open mz_stream_posix_is_open @@ -135,7 +135,7 @@ void mz_stream_passthru_delete(void **stream); #define mz_os_change_dir mz_posix_change_dir #define mz_os_make_dir mz_posix_make_dir #else -#include "mzstrm_win32.h" +#include "mz_strm_win32.h" #define mz_stream_os_open mz_stream_win32_open #define mz_stream_os_is_open mz_stream_win32_is_open diff --git a/mz_strm_aes.c b/mz_strm_aes.c index 8228f10..f3baa34 100644 --- a/mz_strm_aes.c +++ b/mz_strm_aes.c @@ -12,8 +12,8 @@ #include #include -#include "mzstrm.h" -#include "mzstrm_aes.h" +#include "mz_strm.h" +#include "mz_strm_aes.h" #include "aes/aes.h" #include "aes/fileenc.h" diff --git a/mz_strm_buf.c b/mz_strm_buf.c index f39356b..9e49c8f 100755 --- a/mz_strm_buf.c +++ b/mz_strm_buf.c @@ -16,8 +16,8 @@ #include #include -#include "mzstrm.h" -#include "mzstrm_buf.h" +#include "mz_strm.h" +#include "mz_strm_buf.h" /***************************************************************************/ diff --git a/mz_strm_bzip.c b/mz_strm_bzip.c index e4eb267..5e19a15 100644 --- a/mz_strm_bzip.c +++ b/mz_strm_bzip.c @@ -16,8 +16,8 @@ #include "bzip2\bzlib.h" -#include "mzstrm.h" -#include "mzstrm_bzip.h" +#include "mz_strm.h" +#include "mz_strm_bzip.h" /***************************************************************************/ diff --git a/mz_strm_crypt.c b/mz_strm_crypt.c index 53c02e5..6c6551a 100644 --- a/mz_strm_crypt.c +++ b/mz_strm_crypt.c @@ -31,8 +31,8 @@ #include "zlib.h" -#include "mzstrm.h" -#include "mzstrm_crypt.h" +#include "mz_strm.h" +#include "mz_strm_crypt.h" /***************************************************************************/ diff --git a/mz_strm_lzma.c b/mz_strm_lzma.c index 8334e88..3e492ee 100644 --- a/mz_strm_lzma.c +++ b/mz_strm_lzma.c @@ -17,8 +17,8 @@ #include -#include "mzstrm.h" -#include "mzstrm_lzma.h" +#include "mz_strm.h" +#include "mz_strm_lzma.h" /***************************************************************************/ diff --git a/mz_strm_mem.c b/mz_strm_mem.c index 672a3ee..1925f0a 100644 --- a/mz_strm_mem.c +++ b/mz_strm_mem.c @@ -20,8 +20,8 @@ #include #include -#include "mzstrm.h" -#include "mzstrm_mem.h" +#include "mz_strm.h" +#include "mz_strm_mem.h" /***************************************************************************/ diff --git a/mz_strm_posix.c b/mz_strm_posix.c index 1ea7b3b..9e0129b 100644 --- a/mz_strm_posix.c +++ b/mz_strm_posix.c @@ -35,8 +35,8 @@ # define mkdir(x,y) _mkdir(x) #endif -#include "mzstrm.h" -#include "mzstrm_posix.h" +#include "mz_strm.h" +#include "mz_strm_posix.h" /***************************************************************************/ diff --git a/mz_strm_win32.c b/mz_strm_win32.c index 4546fc2..ef610fd 100644 --- a/mz_strm_win32.c +++ b/mz_strm_win32.c @@ -19,8 +19,8 @@ #include #include -#include "mzstrm.h" -#include "mzstrm_win32.h" +#include "mz_strm.h" +#include "mz_strm_win32.h" /***************************************************************************/ diff --git a/mz_strm_zlib.c b/mz_strm_zlib.c index 7cfe51b..ec8acf8 100644 --- a/mz_strm_zlib.c +++ b/mz_strm_zlib.c @@ -16,8 +16,8 @@ #include "zlib.h" -#include "mzstrm.h" -#include "mzstrm_zlib.h" +#include "mz_strm.h" +#include "mz_strm_zlib.h" /***************************************************************************/ diff --git a/mz_unzip.c b/mz_unzip.c index 973856b..9d7e2c3 100644 --- a/mz_unzip.c +++ b/mz_unzip.c @@ -25,23 +25,23 @@ #include "zlib.h" -#include "mzstrm.h" +#include "mz_strm.h" #ifdef HAVE_AES -#include "mzstrm_aes.h" +#include "mz_strm_aes.h" #endif #ifdef HAVE_BZIP2 -#include "mzstrm_bzip.h" +#include "mz_strm_bzip.h" #endif #ifndef NOUNCRYPT -# include "mzstrm_crypt.h" +# include "mz_strm_crypt.h" #endif #ifdef HAVE_LZMA -#include "mzstrm_lzma.h" +#include "mz_strm_lzma.h" #endif -#include "mzstrm_mem.h" -#include "mzstrm_zlib.h" +#include "mz_strm_mem.h" +#include "mz_strm_zlib.h" -#include "unzip.h" +#include "mz_unzip.h" /***************************************************************************/ diff --git a/mz_unzip.h b/mz_unzip.h index 2c11f69..ca0e97c 100644 --- a/mz_unzip.h +++ b/mz_unzip.h @@ -28,7 +28,7 @@ extern "C" { #endif #ifndef _ZLIBIOAPI_H -#include "mzstrm.h" +#include "mz_strm.h" #endif /***************************************************************************/ diff --git a/mz_zip.c b/mz_zip.c index 93e9636..54c0c64 100755 --- a/mz_zip.c +++ b/mz_zip.c @@ -23,23 +23,23 @@ #include "zlib.h" -#include "mzstrm.h" +#include "mz_strm.h" #ifdef HAVE_AES -# include "mzstrm_aes.h" +# include "mz_strm_aes.h" #endif #ifdef HAVE_BZIP2 -# include "mzstrm_bzip.h" +# include "mz_strm_bzip.h" #endif #ifndef NOCRYPT -# include "mzstrm_crypt.h" +# include "mz_strm_crypt.h" #endif #ifdef HAVE_LZMA -# include "mzstrm_lzma.h" +# include "mz_strm_lzma.h" #endif -#include "mzstrm_mem.h" -#include "mzstrm_zlib.h" +#include "mz_strm_mem.h" +#include "mz_strm_zlib.h" -#include "zip.h" +#include "mz_zip.h" /***************************************************************************/ diff --git a/mz_zip.h b/mz_zip.h index e610eae..f711784 100644 --- a/mz_zip.h +++ b/mz_zip.h @@ -26,7 +26,7 @@ extern "C" { #endif #ifndef _ZLIBIOAPI_H -# include "mzstrm.h" +# include "mz_strm.h" #endif /***************************************************************************/ diff --git a/test.c b/test.c index 3d9c853..e0941dd 100644 --- a/test.c +++ b/test.c @@ -5,11 +5,11 @@ #include #include -#include "mzstrm.h" -#include "mzstrm_bzip.h" -#include "mzstrm_crypt.h" -#include "mzstrm_aes.h" -#include "mzstrm_zlib.h" +#include "mz_strm.h" +#include "mz_strm_bzip.h" +#include "mz_strm_crypt.h" +#include "mz_strm_aes.h" +#include "mz_strm_zlib.h" void test_encrypt(char *method, mz_stream_create_cb crypt_create, char *password) { diff --git a/windows/libminizip.vcxproj b/windows/libminizip.vcxproj index 085fa84..50cdc12 100644 --- a/windows/libminizip.vcxproj +++ b/windows/libminizip.vcxproj @@ -133,16 +133,6 @@ - - - - - - - - - - @@ -155,9 +145,19 @@ + + + + + + + + + + + + - - @@ -171,16 +171,6 @@ - - - - - - - - - - @@ -193,9 +183,19 @@ + + + + + + + + + + + + - - diff --git a/windows/libminizip.vcxproj.filters b/windows/libminizip.vcxproj.filters index d5be43b..52aee67 100644 --- a/windows/libminizip.vcxproj.filters +++ b/windows/libminizip.vcxproj.filters @@ -20,9 +20,6 @@ - - Source Files - Zlib @@ -56,9 +53,6 @@ Zlib - - Source Files - AES @@ -92,62 +86,65 @@ BZip - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - BZip - - Source Files - Source Files - - Source Files - BZip - - Source Files - BZip BZip + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + Zlib - - Header Files - Zlib @@ -175,9 +172,6 @@ Zlib - - Header Files - AES @@ -211,43 +205,49 @@ BZip - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - Header Files Header Files - - Header Files - BZip - + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + Header Files