Compare commits
	
		
			16 Commits
		
	
	
		
	
	| Author | SHA1 | Date | |
|---|---|---|---|
|   | 5089329162 | ||
|   | 5b5da45640 | ||
|   | 2dad5389af | ||
|   | b4d802825a | ||
|   | f5ec26344f | ||
|   | bddc968b14 | ||
|   | 5481269e1f | ||
|   | e8fee0ea7b | ||
|   | b7bc388454 | ||
|   | c714072020 | ||
|   | 388a285cb8 | ||
|   | 139c67fc87 | ||
|   | 70252daf89 | ||
|   | 9b703f2000 | ||
|   | 5d33c62c7d | ||
|   | 8a93f49c86 | 
| @@ -3,7 +3,7 @@ set(CMAKE_ALLOW_LOOSE_LOOP_CONSTRUCTS ON) | |||||||
|  |  | ||||||
| project(zlib C) | project(zlib C) | ||||||
|  |  | ||||||
| set(VERSION "1.2.7") | set(VERSION "1.2.8") | ||||||
|  |  | ||||||
| option(ASM686 "Enable building i686 assembly implementation") | option(ASM686 "Enable building i686 assembly implementation") | ||||||
| option(AMD64 "Enable building amd64 assembly implementation") | option(AMD64 "Enable building amd64 assembly implementation") | ||||||
|   | |||||||
							
								
								
									
										15
									
								
								ChangeLog
									
									
									
									
									
								
							
							
						
						
									
										15
									
								
								ChangeLog
									
									
									
									
									
								
							| @@ -1,6 +1,21 @@ | |||||||
|  |  | ||||||
|                 ChangeLog file for zlib |                 ChangeLog file for zlib | ||||||
|  |  | ||||||
|  | Changes in 1.2.8 (28 Apr 2013) | ||||||
|  | - Update contrib/minizip/iowin32.c for Windows RT [Vollant] | ||||||
|  | - Do not force Z_CONST for C++ | ||||||
|  | - Clean up contrib/vstudio [Ro<52>] | ||||||
|  | - Correct spelling error in zlib.h | ||||||
|  | - Fix mixed line endings in contrib/vstudio | ||||||
|  |  | ||||||
|  | Changes in 1.2.7.3 (13 Apr 2013) | ||||||
|  | - Fix version numbers and DLL names in contrib/vstudio/*/zlib.rc | ||||||
|  |  | ||||||
|  | Changes in 1.2.7.2 (13 Apr 2013) | ||||||
|  | - Change check for a four-byte type back to hexadecimal | ||||||
|  | - Fix typo in win32/Makefile.msc | ||||||
|  | - Add casts in gzwrite.c for pointer differences | ||||||
|  |  | ||||||
| Changes in 1.2.7.1 (24 Mar 2013) | Changes in 1.2.7.1 (24 Mar 2013) | ||||||
| - Replace use of unsafe string functions with snprintf if available | - Replace use of unsafe string functions with snprintf if available | ||||||
| - Avoid including stddef.h on Windows for Z_SOLO compile [Niessink] | - Avoid including stddef.h on Windows for Z_SOLO compile [Niessink] | ||||||
|   | |||||||
| @@ -1,5 +1,5 @@ | |||||||
| # Makefile for zlib | # Makefile for zlib | ||||||
| # Copyright (C) 1995-2012 Jean-loup Gailly, Mark Adler | # Copyright (C) 1995-2013 Jean-loup Gailly, Mark Adler | ||||||
| # For conditions of distribution and use, see copyright notice in zlib.h | # For conditions of distribution and use, see copyright notice in zlib.h | ||||||
|  |  | ||||||
| # To compile and test, type: | # To compile and test, type: | ||||||
| @@ -32,7 +32,7 @@ CPP=$(CC) -E | |||||||
|  |  | ||||||
| STATICLIB=libz.a | STATICLIB=libz.a | ||||||
| SHAREDLIB=libz.so | SHAREDLIB=libz.so | ||||||
| SHAREDLIBV=libz.so.1.2.7.1 | SHAREDLIBV=libz.so.1.2.8 | ||||||
| SHAREDLIBM=libz.so.1 | SHAREDLIBM=libz.so.1 | ||||||
| LIBS=$(STATICLIB) $(SHAREDLIBV) | LIBS=$(STATICLIB) $(SHAREDLIBV) | ||||||
|  |  | ||||||
|   | |||||||
							
								
								
									
										6
									
								
								README
									
									
									
									
									
								
							
							
						
						
									
										6
									
								
								README
									
									
									
									
									
								
							| @@ -1,6 +1,6 @@ | |||||||
| ZLIB DATA COMPRESSION LIBRARY | ZLIB DATA COMPRESSION LIBRARY | ||||||
|  |  | ||||||
| zlib 1.2.7.1 is a general purpose data compression library.  All the code is | zlib 1.2.8 is a general purpose data compression library.  All the code is | ||||||
| thread safe.  The data format used by the zlib library is described by RFCs | thread safe.  The data format used by the zlib library is described by RFCs | ||||||
| (Request for Comments) 1950 to 1952 in the files | (Request for Comments) 1950 to 1952 in the files | ||||||
| http://tools.ietf.org/html/rfc1950 (zlib format), rfc1951 (deflate format) and | http://tools.ietf.org/html/rfc1950 (zlib format), rfc1951 (deflate format) and | ||||||
| @@ -31,7 +31,7 @@ Mark Nelson <markn@ieee.org> wrote an article about zlib for the Jan.  1997 | |||||||
| issue of Dr.  Dobb's Journal; a copy of the article is available at | issue of Dr.  Dobb's Journal; a copy of the article is available at | ||||||
| http://marknelson.us/1997/01/01/zlib-engine/ . | http://marknelson.us/1997/01/01/zlib-engine/ . | ||||||
|  |  | ||||||
| The changes made in version 1.2.7.1 are documented in the file ChangeLog. | The changes made in version 1.2.8 are documented in the file ChangeLog. | ||||||
|  |  | ||||||
| Unsupported third party contributions are provided in directory contrib/ . | Unsupported third party contributions are provided in directory contrib/ . | ||||||
|  |  | ||||||
| @@ -84,7 +84,7 @@ Acknowledgments: | |||||||
|  |  | ||||||
| Copyright notice: | Copyright notice: | ||||||
|  |  | ||||||
|  (C) 1995-2012 Jean-loup Gailly and Mark Adler |  (C) 1995-2013 Jean-loup Gailly and Mark Adler | ||||||
|  |  | ||||||
|   This software is provided 'as-is', without any express or implied |   This software is provided 'as-is', without any express or implied | ||||||
|   warranty.  In no event will the authors be held liable for any damages |   warranty.  In no event will the authors be held liable for any damages | ||||||
|   | |||||||
| @@ -105,6 +105,6 @@ | |||||||
|                                  &MODLIB/TREES       &MODLIB/UNCOMPR     + |                                  &MODLIB/TREES       &MODLIB/UNCOMPR     + | ||||||
|                                  &MODLIB/ZUTIL)                          + |                                  &MODLIB/ZUTIL)                          + | ||||||
|                           SRCFILE(&SRCLIB/&CTLFILE) SRCMBR(BNDSRC)       + |                           SRCFILE(&SRCLIB/&CTLFILE) SRCMBR(BNDSRC)       + | ||||||
|                           TEXT('ZLIB 1.2.7.1') TGTRLS(&TGTRLS) |                           TEXT('ZLIB 1.2.8') TGTRLS(&TGTRLS) | ||||||
|  |  | ||||||
|              ENDPGM |              ENDPGM | ||||||
|   | |||||||
| @@ -1,4 +1,4 @@ | |||||||
|         ZLIB version 1.2.7.1 for AS400 installation instructions |         ZLIB version 1.2.8 for AS400 installation instructions | ||||||
|  |  | ||||||
| I) From an AS400 *SAVF file: | I) From an AS400 *SAVF file: | ||||||
|  |  | ||||||
|   | |||||||
| @@ -1,7 +1,7 @@ | |||||||
|       *  ZLIB.INC - Interface to the general purpose compression library |       *  ZLIB.INC - Interface to the general purpose compression library | ||||||
|       * |       * | ||||||
|       *  ILE RPG400 version by Patrick Monnerat, DATASPHERE. |       *  ILE RPG400 version by Patrick Monnerat, DATASPHERE. | ||||||
|       *  Version 1.2.7.1 |       *  Version 1.2.8 | ||||||
|       * |       * | ||||||
|       * |       * | ||||||
|       *  WARNING: |       *  WARNING: | ||||||
| @@ -22,14 +22,14 @@ | |||||||
|       * |       * | ||||||
|       *  Versioning information. |       *  Versioning information. | ||||||
|       * |       * | ||||||
|      D ZLIB_VERSION    C                   '1.2.7.1' |      D ZLIB_VERSION    C                   '1.2.8' | ||||||
|      D ZLIB_VERNUM     C                   X'1271' |      D ZLIB_VERNUM     C                   X'1280' | ||||||
|      D ZLIB_VER_MAJOR  C                   1 |      D ZLIB_VER_MAJOR  C                   1 | ||||||
|      D ZLIB_VER_MINOR  C                   2 |      D ZLIB_VER_MINOR  C                   2 | ||||||
|      D ZLIB_VER_REVISION... |      D ZLIB_VER_REVISION... | ||||||
|      D                 C                   7 |      D                 C                   8 | ||||||
|      D ZLIB_VER_SUBREVISION... |      D ZLIB_VER_SUBREVISION... | ||||||
|      D                 C                   1 |      D                 C                   0 | ||||||
|       * |       * | ||||||
|       *  Other equates. |       *  Other equates. | ||||||
|       * |       * | ||||||
|   | |||||||
| @@ -152,7 +152,7 @@ procedure DecompressToUserBuf(const InBuf: Pointer; InBytes: Integer; | |||||||
|   const OutBuf: Pointer; BufSize: Integer); |   const OutBuf: Pointer; BufSize: Integer); | ||||||
|  |  | ||||||
| const | const | ||||||
|   zlib_version = '1.2.7.1'; |   zlib_version = '1.2.8'; | ||||||
|  |  | ||||||
| type | type | ||||||
|   EZlibError = class(Exception); |   EZlibError = class(Exception); | ||||||
|   | |||||||
| @@ -1,5 +1,5 @@ | |||||||
| // | // | ||||||
| // <EFBFBD> Copyright Henrik Ravn 2004 | // © Copyright Henrik Ravn 2004 | ||||||
| // | // | ||||||
| // Use, modification and distribution are subject to the Boost Software License, Version 1.0. | // Use, modification and distribution are subject to the Boost Software License, Version 1.0. | ||||||
| // (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) | // (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) | ||||||
| @@ -156,7 +156,7 @@ namespace DotZLibTests | |||||||
|         public void Info_Version() |         public void Info_Version() | ||||||
|         { |         { | ||||||
|             Info info = new Info(); |             Info info = new Info(); | ||||||
|             Assert.AreEqual("1.2.7.1", Info.Version); |             Assert.AreEqual("1.2.8", Info.Version); | ||||||
|             Assert.AreEqual(32, info.SizeOfUInt); |             Assert.AreEqual(32, info.SizeOfUInt); | ||||||
|             Assert.AreEqual(32, info.SizeOfULong); |             Assert.AreEqual(32, info.SizeOfULong); | ||||||
|             Assert.AreEqual(32, info.SizeOfPointer); |             Assert.AreEqual(32, info.SizeOfPointer); | ||||||
|   | |||||||
| @@ -1,5 +1,5 @@ | |||||||
| /* inftree9.c -- generate Huffman trees for efficient decoding | /* inftree9.c -- generate Huffman trees for efficient decoding | ||||||
|  * Copyright (C) 1995-2012 Mark Adler |  * Copyright (C) 1995-2013 Mark Adler | ||||||
|  * For conditions of distribution and use, see copyright notice in zlib.h |  * For conditions of distribution and use, see copyright notice in zlib.h | ||||||
|  */ |  */ | ||||||
|  |  | ||||||
| @@ -9,7 +9,7 @@ | |||||||
| #define MAXBITS 15 | #define MAXBITS 15 | ||||||
|  |  | ||||||
| const char inflate9_copyright[] = | const char inflate9_copyright[] = | ||||||
|    " inflate9 1.2.7.1 Copyright 1995-2012 Mark Adler "; |    " inflate9 1.2.8 Copyright 1995-2013 Mark Adler "; | ||||||
| /* | /* | ||||||
|   If you use the zlib library in a product, an acknowledgment is welcome |   If you use the zlib library in a product, an acknowledgment is welcome | ||||||
|   in the documentation of your product. If for some reason you cannot |   in the documentation of your product. If for some reason you cannot | ||||||
| @@ -64,7 +64,7 @@ unsigned short FAR *work; | |||||||
|     static const unsigned short lext[31] = { /* Length codes 257..285 extra */ |     static const unsigned short lext[31] = { /* Length codes 257..285 extra */ | ||||||
|         128, 128, 128, 128, 128, 128, 128, 128, 129, 129, 129, 129, |         128, 128, 128, 128, 128, 128, 128, 128, 129, 129, 129, 129, | ||||||
|         130, 130, 130, 130, 131, 131, 131, 131, 132, 132, 132, 132, |         130, 130, 130, 130, 131, 131, 131, 131, 132, 132, 132, 132, | ||||||
|         133, 133, 133, 133, 144, 79, 204}; |         133, 133, 133, 133, 144, 72, 78}; | ||||||
|     static const unsigned short dbase[32] = { /* Distance codes 0..31 base */ |     static const unsigned short dbase[32] = { /* Distance codes 0..31 base */ | ||||||
|         1, 2, 3, 4, 5, 7, 9, 13, 17, 25, 33, 49, |         1, 2, 3, 4, 5, 7, 9, 13, 17, 25, 33, 49, | ||||||
|         65, 97, 129, 193, 257, 385, 513, 769, 1025, 1537, 2049, 3073, |         65, 97, 129, 193, 257, 385, 513, 769, 1025, 1537, 2049, 3073, | ||||||
|   | |||||||
| @@ -1,7 +1,7 @@ | |||||||
| #                                               -*- Autoconf -*- | #                                               -*- Autoconf -*- | ||||||
| # Process this file with autoconf to produce a configure script. | # Process this file with autoconf to produce a configure script. | ||||||
|  |  | ||||||
| AC_INIT([minizip], [1.2.7.1], [bugzilla.redhat.com]) | AC_INIT([minizip], [1.2.8], [bugzilla.redhat.com]) | ||||||
| AC_CONFIG_SRCDIR([minizip.c]) | AC_CONFIG_SRCDIR([minizip.c]) | ||||||
| AM_INIT_AUTOMAKE([foreign]) | AM_INIT_AUTOMAKE([foreign]) | ||||||
| LT_INIT | LT_INIT | ||||||
|   | |||||||
| @@ -25,6 +25,13 @@ | |||||||
| #define INVALID_SET_FILE_POINTER ((DWORD)-1) | #define INVALID_SET_FILE_POINTER ((DWORD)-1) | ||||||
| #endif | #endif | ||||||
|  |  | ||||||
|  |  | ||||||
|  | #if defined(WINAPI_FAMILY_PARTITION) && (!(defined(IOWIN32_USING_WINRT_API))) | ||||||
|  | #if WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_APP) | ||||||
|  | #define IOWIN32_USING_WINRT_API 1 | ||||||
|  | #endif | ||||||
|  | #endif | ||||||
|  |  | ||||||
| voidpf  ZCALLBACK win32_open_file_func  OF((voidpf opaque, const char* filename, int mode)); | voidpf  ZCALLBACK win32_open_file_func  OF((voidpf opaque, const char* filename, int mode)); | ||||||
| uLong   ZCALLBACK win32_read_file_func  OF((voidpf opaque, voidpf stream, void* buf, uLong size)); | uLong   ZCALLBACK win32_read_file_func  OF((voidpf opaque, voidpf stream, void* buf, uLong size)); | ||||||
| uLong   ZCALLBACK win32_write_file_func OF((voidpf opaque, voidpf stream, const void* buf, uLong size)); | uLong   ZCALLBACK win32_write_file_func OF((voidpf opaque, voidpf stream, const void* buf, uLong size)); | ||||||
| @@ -93,8 +100,22 @@ voidpf ZCALLBACK win32_open64_file_func (voidpf opaque,const void* filename,int | |||||||
|  |  | ||||||
|     win32_translate_open_mode(mode,&dwDesiredAccess,&dwCreationDisposition,&dwShareMode,&dwFlagsAndAttributes); |     win32_translate_open_mode(mode,&dwDesiredAccess,&dwCreationDisposition,&dwShareMode,&dwFlagsAndAttributes); | ||||||
|  |  | ||||||
|  | #ifdef IOWIN32_USING_WINRT_API | ||||||
|  | #ifdef UNICODE | ||||||
|  |     if ((filename!=NULL) && (dwDesiredAccess != 0)) | ||||||
|  |         hFile = CreateFile2((LPCTSTR)filename, dwDesiredAccess, dwShareMode, dwCreationDisposition, NULL); | ||||||
|  | #else | ||||||
|  |     if ((filename!=NULL) && (dwDesiredAccess != 0)) | ||||||
|  |     { | ||||||
|  |         WCHAR filenameW[FILENAME_MAX + 0x200 + 1]; | ||||||
|  |         MultiByteToWideChar(CP_ACP,0,(const char*)filename,-1,filenameW,FILENAME_MAX + 0x200); | ||||||
|  |         hFile = CreateFile2(filenameW, dwDesiredAccess, dwShareMode, dwCreationDisposition, NULL); | ||||||
|  |     } | ||||||
|  | #endif | ||||||
|  | #else | ||||||
|     if ((filename!=NULL) && (dwDesiredAccess != 0)) |     if ((filename!=NULL) && (dwDesiredAccess != 0)) | ||||||
|         hFile = CreateFile((LPCTSTR)filename, dwDesiredAccess, dwShareMode, NULL, dwCreationDisposition, dwFlagsAndAttributes, NULL); |         hFile = CreateFile((LPCTSTR)filename, dwDesiredAccess, dwShareMode, NULL, dwCreationDisposition, dwFlagsAndAttributes, NULL); | ||||||
|  | #endif | ||||||
|  |  | ||||||
|     return win32_build_iowin(hFile); |     return win32_build_iowin(hFile); | ||||||
| } | } | ||||||
| @@ -108,8 +129,17 @@ voidpf ZCALLBACK win32_open64_file_funcA (voidpf opaque,const void* filename,int | |||||||
|  |  | ||||||
|     win32_translate_open_mode(mode,&dwDesiredAccess,&dwCreationDisposition,&dwShareMode,&dwFlagsAndAttributes); |     win32_translate_open_mode(mode,&dwDesiredAccess,&dwCreationDisposition,&dwShareMode,&dwFlagsAndAttributes); | ||||||
|  |  | ||||||
|  | #ifdef IOWIN32_USING_WINRT_API | ||||||
|  |     if ((filename!=NULL) && (dwDesiredAccess != 0)) | ||||||
|  |     { | ||||||
|  |         WCHAR filenameW[FILENAME_MAX + 0x200 + 1]; | ||||||
|  |         MultiByteToWideChar(CP_ACP,0,(const char*)filename,-1,filenameW,FILENAME_MAX + 0x200); | ||||||
|  |         hFile = CreateFile2(filenameW, dwDesiredAccess, dwShareMode, dwCreationDisposition, NULL); | ||||||
|  |     } | ||||||
|  | #else | ||||||
|     if ((filename!=NULL) && (dwDesiredAccess != 0)) |     if ((filename!=NULL) && (dwDesiredAccess != 0)) | ||||||
|         hFile = CreateFileA((LPCSTR)filename, dwDesiredAccess, dwShareMode, NULL, dwCreationDisposition, dwFlagsAndAttributes, NULL); |         hFile = CreateFileA((LPCSTR)filename, dwDesiredAccess, dwShareMode, NULL, dwCreationDisposition, dwFlagsAndAttributes, NULL); | ||||||
|  | #endif | ||||||
|  |  | ||||||
|     return win32_build_iowin(hFile); |     return win32_build_iowin(hFile); | ||||||
| } | } | ||||||
| @@ -123,8 +153,13 @@ voidpf ZCALLBACK win32_open64_file_funcW (voidpf opaque,const void* filename,int | |||||||
|  |  | ||||||
|     win32_translate_open_mode(mode,&dwDesiredAccess,&dwCreationDisposition,&dwShareMode,&dwFlagsAndAttributes); |     win32_translate_open_mode(mode,&dwDesiredAccess,&dwCreationDisposition,&dwShareMode,&dwFlagsAndAttributes); | ||||||
|  |  | ||||||
|  | #ifdef IOWIN32_USING_WINRT_API | ||||||
|  |     if ((filename!=NULL) && (dwDesiredAccess != 0)) | ||||||
|  |         hFile = CreateFile2((LPCWSTR)filename, dwDesiredAccess, dwShareMode, dwCreationDisposition,NULL); | ||||||
|  | #else | ||||||
|     if ((filename!=NULL) && (dwDesiredAccess != 0)) |     if ((filename!=NULL) && (dwDesiredAccess != 0)) | ||||||
|         hFile = CreateFileW((LPCWSTR)filename, dwDesiredAccess, dwShareMode, NULL, dwCreationDisposition, dwFlagsAndAttributes, NULL); |         hFile = CreateFileW((LPCWSTR)filename, dwDesiredAccess, dwShareMode, NULL, dwCreationDisposition, dwFlagsAndAttributes, NULL); | ||||||
|  | #endif | ||||||
|  |  | ||||||
|     return win32_build_iowin(hFile); |     return win32_build_iowin(hFile); | ||||||
| } | } | ||||||
| @@ -138,8 +173,22 @@ voidpf ZCALLBACK win32_open_file_func (voidpf opaque,const char* filename,int mo | |||||||
|  |  | ||||||
|     win32_translate_open_mode(mode,&dwDesiredAccess,&dwCreationDisposition,&dwShareMode,&dwFlagsAndAttributes); |     win32_translate_open_mode(mode,&dwDesiredAccess,&dwCreationDisposition,&dwShareMode,&dwFlagsAndAttributes); | ||||||
|  |  | ||||||
|  | #ifdef IOWIN32_USING_WINRT_API | ||||||
|  | #ifdef UNICODE | ||||||
|  |     if ((filename!=NULL) && (dwDesiredAccess != 0)) | ||||||
|  |         hFile = CreateFile2((LPCTSTR)filename, dwDesiredAccess, dwShareMode, dwCreationDisposition, NULL); | ||||||
|  | #else | ||||||
|  |     if ((filename!=NULL) && (dwDesiredAccess != 0)) | ||||||
|  |     { | ||||||
|  |         WCHAR filenameW[FILENAME_MAX + 0x200 + 1]; | ||||||
|  |         MultiByteToWideChar(CP_ACP,0,(const char*)filename,-1,filenameW,FILENAME_MAX + 0x200); | ||||||
|  |         hFile = CreateFile2(filenameW, dwDesiredAccess, dwShareMode, dwCreationDisposition, NULL); | ||||||
|  |     } | ||||||
|  | #endif | ||||||
|  | #else | ||||||
|     if ((filename!=NULL) && (dwDesiredAccess != 0)) |     if ((filename!=NULL) && (dwDesiredAccess != 0)) | ||||||
|         hFile = CreateFile((LPCTSTR)filename, dwDesiredAccess, dwShareMode, NULL, dwCreationDisposition, dwFlagsAndAttributes, NULL); |         hFile = CreateFile((LPCTSTR)filename, dwDesiredAccess, dwShareMode, NULL, dwCreationDisposition, dwFlagsAndAttributes, NULL); | ||||||
|  | #endif | ||||||
|  |  | ||||||
|     return win32_build_iowin(hFile); |     return win32_build_iowin(hFile); | ||||||
| } | } | ||||||
| @@ -188,6 +237,26 @@ uLong ZCALLBACK win32_write_file_func (voidpf opaque,voidpf stream,const void* b | |||||||
|     return ret; |     return ret; | ||||||
| } | } | ||||||
|  |  | ||||||
|  | static BOOL MySetFilePointerEx(HANDLE hFile, LARGE_INTEGER pos, LARGE_INTEGER *newPos,  DWORD dwMoveMethod) | ||||||
|  | { | ||||||
|  | #ifdef IOWIN32_USING_WINRT_API | ||||||
|  |     return SetFilePointerEx(hFile, pos, newPos, dwMoveMethod); | ||||||
|  | #else | ||||||
|  |     LONG lHigh = pos.HighPart; | ||||||
|  |     DWORD dwNewPos = SetFilePointer(hFile, pos.LowPart, &lHigh, FILE_CURRENT); | ||||||
|  |     BOOL fOk = TRUE; | ||||||
|  |     if (dwNewPos == 0xFFFFFFFF) | ||||||
|  |         if (GetLastError() != NO_ERROR) | ||||||
|  |             fOk = FALSE; | ||||||
|  |     if ((newPos != NULL) && (fOk)) | ||||||
|  |     { | ||||||
|  |         newPos->LowPart = dwNewPos; | ||||||
|  |         newPos->HighPart = lHigh; | ||||||
|  |     } | ||||||
|  |     return fOk; | ||||||
|  | #endif | ||||||
|  | } | ||||||
|  |  | ||||||
| long ZCALLBACK win32_tell_file_func (voidpf opaque,voidpf stream) | long ZCALLBACK win32_tell_file_func (voidpf opaque,voidpf stream) | ||||||
| { | { | ||||||
|     long ret=-1; |     long ret=-1; | ||||||
| @@ -196,15 +265,17 @@ long ZCALLBACK win32_tell_file_func (voidpf opaque,voidpf stream) | |||||||
|         hFile = ((WIN32FILE_IOWIN*)stream) -> hf; |         hFile = ((WIN32FILE_IOWIN*)stream) -> hf; | ||||||
|     if (hFile != NULL) |     if (hFile != NULL) | ||||||
|     { |     { | ||||||
|         DWORD dwSet = SetFilePointer(hFile, 0, NULL, FILE_CURRENT); |         LARGE_INTEGER pos; | ||||||
|         if (dwSet == INVALID_SET_FILE_POINTER) |         pos.QuadPart = 0; | ||||||
|  |  | ||||||
|  |         if (!MySetFilePointerEx(hFile, pos, &pos, FILE_CURRENT)) | ||||||
|         { |         { | ||||||
|             DWORD dwErr = GetLastError(); |             DWORD dwErr = GetLastError(); | ||||||
|             ((WIN32FILE_IOWIN*)stream) -> error=(int)dwErr; |             ((WIN32FILE_IOWIN*)stream) -> error=(int)dwErr; | ||||||
|             ret = -1; |             ret = -1; | ||||||
|         } |         } | ||||||
|         else |         else | ||||||
|             ret=(long)dwSet; |             ret=(long)pos.LowPart; | ||||||
|     } |     } | ||||||
|     return ret; |     return ret; | ||||||
| } | } | ||||||
| @@ -218,17 +289,17 @@ ZPOS64_T ZCALLBACK win32_tell64_file_func (voidpf opaque, voidpf stream) | |||||||
|  |  | ||||||
|     if (hFile) |     if (hFile) | ||||||
|     { |     { | ||||||
|         LARGE_INTEGER li; |         LARGE_INTEGER pos; | ||||||
|         li.QuadPart = 0; |         pos.QuadPart = 0; | ||||||
|         li.u.LowPart = SetFilePointer(hFile, li.u.LowPart, &li.u.HighPart, FILE_CURRENT); |  | ||||||
|         if ( (li.LowPart == 0xFFFFFFFF) && (GetLastError() != NO_ERROR)) |         if (!MySetFilePointerEx(hFile, pos, &pos, FILE_CURRENT)) | ||||||
|         { |         { | ||||||
|             DWORD dwErr = GetLastError(); |             DWORD dwErr = GetLastError(); | ||||||
|             ((WIN32FILE_IOWIN*)stream) -> error=(int)dwErr; |             ((WIN32FILE_IOWIN*)stream) -> error=(int)dwErr; | ||||||
|             ret = (ZPOS64_T)-1; |             ret = (ZPOS64_T)-1; | ||||||
|         } |         } | ||||||
|         else |         else | ||||||
|             ret=li.QuadPart; |             ret=pos.QuadPart; | ||||||
|     } |     } | ||||||
|     return ret; |     return ret; | ||||||
| } | } | ||||||
| @@ -258,8 +329,9 @@ long ZCALLBACK win32_seek_file_func (voidpf opaque,voidpf stream,uLong offset,in | |||||||
|  |  | ||||||
|     if (hFile != NULL) |     if (hFile != NULL) | ||||||
|     { |     { | ||||||
|         DWORD dwSet = SetFilePointer(hFile, offset, NULL, dwMoveMethod); |         LARGE_INTEGER pos; | ||||||
|         if (dwSet == INVALID_SET_FILE_POINTER) |         pos.QuadPart = offset; | ||||||
|  |         if (!MySetFilePointerEx(hFile, pos, NULL, dwMoveMethod)) | ||||||
|         { |         { | ||||||
|             DWORD dwErr = GetLastError(); |             DWORD dwErr = GetLastError(); | ||||||
|             ((WIN32FILE_IOWIN*)stream) -> error=(int)dwErr; |             ((WIN32FILE_IOWIN*)stream) -> error=(int)dwErr; | ||||||
| @@ -296,9 +368,9 @@ long ZCALLBACK win32_seek64_file_func (voidpf opaque, voidpf stream,ZPOS64_T off | |||||||
|  |  | ||||||
|     if (hFile) |     if (hFile) | ||||||
|     { |     { | ||||||
|         LARGE_INTEGER* li = (LARGE_INTEGER*)&offset; |         LARGE_INTEGER pos; | ||||||
|         DWORD dwSet = SetFilePointer(hFile, li->u.LowPart, &li->u.HighPart, dwMoveMethod); |         pos.QuadPart = offset; | ||||||
|         if (dwSet == INVALID_SET_FILE_POINTER) |         if (!MySetFilePointerEx(hFile, pos, NULL, FILE_CURRENT)) | ||||||
|         { |         { | ||||||
|             DWORD dwErr = GetLastError(); |             DWORD dwErr = GetLastError(); | ||||||
|             ((WIN32FILE_IOWIN*)stream) -> error=(int)dwErr; |             ((WIN32FILE_IOWIN*)stream) -> error=(int)dwErr; | ||||||
|   | |||||||
| @@ -10,8 +10,8 @@ unit zlibpas; | |||||||
| interface | interface | ||||||
|  |  | ||||||
| const | const | ||||||
|   ZLIB_VERSION = '1.2.7.1'; |   ZLIB_VERSION = '1.2.8'; | ||||||
|   ZLIB_VERNUM  = $1271; |   ZLIB_VERNUM  = $1280; | ||||||
|  |  | ||||||
| type | type | ||||||
|   alloc_func = function(opaque: Pointer; items, size: Integer): Pointer; |   alloc_func = function(opaque: Pointer; items, size: Integer): Pointer; | ||||||
|   | |||||||
| @@ -1,4 +1,4 @@ | |||||||
| Building instructions for the DLL versions of Zlib 1.2.7.1 | Building instructions for the DLL versions of Zlib 1.2.8 | ||||||
| ======================================================== | ======================================================== | ||||||
|  |  | ||||||
| This directory contains projects that build zlib and minizip using | This directory contains projects that build zlib and minizip using | ||||||
| @@ -28,6 +28,11 @@ Build instructions for Visual Studio 2010 (32 bits or 64 bits) | |||||||
| - Uncompress current zlib, including all contrib/* files | - Uncompress current zlib, including all contrib/* files | ||||||
| - Open contrib\vstudio\vc10\zlibvc.sln with Microsoft Visual C++ 2010 | - Open contrib\vstudio\vc10\zlibvc.sln with Microsoft Visual C++ 2010 | ||||||
|  |  | ||||||
|  | Build instructions for Visual Studio 2012 (32 bits or 64 bits) | ||||||
|  | -------------------------------------------------------------- | ||||||
|  | - Uncompress current zlib, including all contrib/* files | ||||||
|  | - Open contrib\vstudio\vc11\zlibvc.sln with Microsoft Visual C++ 2012 | ||||||
|  |  | ||||||
|  |  | ||||||
| Important | Important | ||||||
| --------- | --------- | ||||||
|   | |||||||
| @@ -1,3 +0,0 @@ | |||||||
| <?xml version="1.0" encoding="utf-8"?> |  | ||||||
| <Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> |  | ||||||
| </Project> |  | ||||||
| @@ -1,3 +0,0 @@ | |||||||
| <?xml version="1.0" encoding="utf-8"?> |  | ||||||
| <Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> |  | ||||||
| </Project> |  | ||||||
| @@ -1,3 +0,0 @@ | |||||||
| <?xml version="1.0" encoding="utf-8"?> |  | ||||||
| <Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> |  | ||||||
| </Project> |  | ||||||
| @@ -1,3 +0,0 @@ | |||||||
| <?xml version="1.0" encoding="utf-8"?> |  | ||||||
| <Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> |  | ||||||
| </Project> |  | ||||||
| @@ -2,8 +2,8 @@ | |||||||
|  |  | ||||||
| #define IDR_VERSION1  1 | #define IDR_VERSION1  1 | ||||||
| IDR_VERSION1	VERSIONINFO	MOVEABLE IMPURE LOADONCALL DISCARDABLE | IDR_VERSION1	VERSIONINFO	MOVEABLE IMPURE LOADONCALL DISCARDABLE | ||||||
|   FILEVERSION	 1.2.7.1,1 |   FILEVERSION	 1,2,8,0 | ||||||
|   PRODUCTVERSION 1.2.7.1,1 |   PRODUCTVERSION 1,2,8,0 | ||||||
|   FILEFLAGSMASK	VS_FFI_FILEFLAGSMASK |   FILEFLAGSMASK	VS_FFI_FILEFLAGSMASK | ||||||
|   FILEFLAGS	0 |   FILEFLAGS	0 | ||||||
|   FILEOS	VOS_DOS_WINDOWS32 |   FILEOS	VOS_DOS_WINDOWS32 | ||||||
| @@ -17,12 +17,12 @@ BEGIN | |||||||
|  |  | ||||||
|     BEGIN |     BEGIN | ||||||
|       VALUE "FileDescription", "zlib data compression and ZIP file I/O library\0" |       VALUE "FileDescription", "zlib data compression and ZIP file I/O library\0" | ||||||
|       VALUE "FileVersion",	"1.2.7.1\0" |       VALUE "FileVersion",	"1.2.8\0" | ||||||
|       VALUE "InternalName",	"zlib\0" |       VALUE "InternalName",	"zlib\0" | ||||||
|       VALUE "OriginalFilename",	"zlib.dll\0" |       VALUE "OriginalFilename",	"zlibwapi.dll\0" | ||||||
|       VALUE "ProductName",	"ZLib.DLL\0" |       VALUE "ProductName",	"ZLib.DLL\0" | ||||||
|       VALUE "Comments","DLL support by Alessandro Iacopetti & Gilles Vollant\0" |       VALUE "Comments","DLL support by Alessandro Iacopetti & Gilles Vollant\0" | ||||||
|       VALUE "LegalCopyright", "(C) 1995-2012 Jean-loup Gailly & Mark Adler\0" |       VALUE "LegalCopyright", "(C) 1995-2013 Jean-loup Gailly & Mark Adler\0" | ||||||
|     END |     END | ||||||
|   END |   END | ||||||
|   BLOCK "VarFileInfo" |   BLOCK "VarFileInfo" | ||||||
|   | |||||||
| @@ -1,3 +0,0 @@ | |||||||
| <?xml version="1.0" encoding="utf-8"?> |  | ||||||
| <Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> |  | ||||||
| </Project> |  | ||||||
| @@ -1,7 +1,7 @@ | |||||||
| LIBRARY | LIBRARY | ||||||
| ; zlib data compression and ZIP file I/O library | ; zlib data compression and ZIP file I/O library | ||||||
|  |  | ||||||
| VERSION		1.2.7.1 | VERSION		1.2.8 | ||||||
|  |  | ||||||
| EXPORTS | EXPORTS | ||||||
|         adler32                                  @1 |         adler32                                  @1 | ||||||
| @@ -134,10 +134,10 @@ EXPORTS | |||||||
|         gzgetc_                                 @161 |         gzgetc_                                 @161 | ||||||
|         inflateResetKeep                        @163 |         inflateResetKeep                        @163 | ||||||
|         deflateResetKeep                        @164 |         deflateResetKeep                        @164 | ||||||
|  |  | ||||||
| ; zlib1 v1.2.7 added: | ; zlib1 v1.2.7 added: | ||||||
|         gzopen_w                                @165 |         gzopen_w                                @165 | ||||||
|  |  | ||||||
| ; zlib1 v1.2.8 added: | ; zlib1 v1.2.8 added: | ||||||
|         inflateGetDictionary                    @166 |         inflateGetDictionary                    @166 | ||||||
|         gzvprintf                               @167 |         gzvprintf                               @167 | ||||||
|   | |||||||
| @@ -1,3 +0,0 @@ | |||||||
| <?xml version="1.0" encoding="utf-8"?> |  | ||||||
| <Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> |  | ||||||
| </Project> |  | ||||||
| @@ -2,8 +2,8 @@ | |||||||
|  |  | ||||||
| #define IDR_VERSION1  1 | #define IDR_VERSION1  1 | ||||||
| IDR_VERSION1	VERSIONINFO	MOVEABLE IMPURE LOADONCALL DISCARDABLE | IDR_VERSION1	VERSIONINFO	MOVEABLE IMPURE LOADONCALL DISCARDABLE | ||||||
|   FILEVERSION	 1.2.7,0 |   FILEVERSION	 1,2,8,0 | ||||||
|   PRODUCTVERSION 1.2.7,0 |   PRODUCTVERSION 1,2,8,0 | ||||||
|   FILEFLAGSMASK	VS_FFI_FILEFLAGSMASK |   FILEFLAGSMASK	VS_FFI_FILEFLAGSMASK | ||||||
|   FILEFLAGS	0 |   FILEFLAGS	0 | ||||||
|   FILEOS	VOS_DOS_WINDOWS32 |   FILEOS	VOS_DOS_WINDOWS32 | ||||||
| @@ -17,12 +17,12 @@ BEGIN | |||||||
|  |  | ||||||
|     BEGIN |     BEGIN | ||||||
|       VALUE "FileDescription", "zlib data compression and ZIP file I/O library\0" |       VALUE "FileDescription", "zlib data compression and ZIP file I/O library\0" | ||||||
|       VALUE "FileVersion",	"1.2.7\0" |       VALUE "FileVersion",	"1.2.8\0" | ||||||
|       VALUE "InternalName",	"zlib\0" |       VALUE "InternalName",	"zlib\0" | ||||||
|       VALUE "OriginalFilename",	"zlib.dll\0" |       VALUE "OriginalFilename",	"zlibwapi.dll\0" | ||||||
|       VALUE "ProductName",	"ZLib.DLL\0" |       VALUE "ProductName",	"ZLib.DLL\0" | ||||||
|       VALUE "Comments","DLL support by Alessandro Iacopetti & Gilles Vollant\0" |       VALUE "Comments","DLL support by Alessandro Iacopetti & Gilles Vollant\0" | ||||||
|       VALUE "LegalCopyright", "(C) 1995-2012 Jean-loup Gailly & Mark Adler\0" |       VALUE "LegalCopyright", "(C) 1995-2013 Jean-loup Gailly & Mark Adler\0" | ||||||
|     END |     END | ||||||
|   END |   END | ||||||
|   BLOCK "VarFileInfo" |   BLOCK "VarFileInfo" | ||||||
|   | |||||||
| @@ -1,7 +1,7 @@ | |||||||
| LIBRARY | LIBRARY | ||||||
| ; zlib data compression and ZIP file I/O library | ; zlib data compression and ZIP file I/O library | ||||||
| 
 | 
 | ||||||
| VERSION		1.27 | VERSION		1.2.8 | ||||||
| 
 | 
 | ||||||
| EXPORTS | EXPORTS | ||||||
|         adler32                                  @1 |         adler32                                  @1 | ||||||
| @@ -134,10 +134,10 @@ EXPORTS | |||||||
|         gzgetc_                                 @161 |         gzgetc_                                 @161 | ||||||
|         inflateResetKeep                        @163 |         inflateResetKeep                        @163 | ||||||
|         deflateResetKeep                        @164 |         deflateResetKeep                        @164 | ||||||
| 
 | 
 | ||||||
| ; zlib1 v1.2.7 added: | ; zlib1 v1.2.7 added: | ||||||
|         gzopen_w                                @165 |         gzopen_w                                @165 | ||||||
| 
 | 
 | ||||||
| ; zlib1 v1.2.8 added: | ; zlib1 v1.2.8 added: | ||||||
|         inflateGetDictionary                    @166 |         inflateGetDictionary                    @166 | ||||||
|         gzvprintf                               @167 |         gzvprintf                               @167 | ||||||
| @@ -1,24 +1,115 @@ | |||||||
|  |  | ||||||
| Microsoft Visual Studio Solution File, Format Version 12.00 | Microsoft Visual Studio Solution File, Format Version 12.00 | ||||||
| # Visual Studio 2010 | # Visual Studio 2012 | ||||||
| Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "zlibvc", "zlibvc.vcxproj", "{8FD826F8-3739-44E6-8CC8-997122E53B8D}" | Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "zlibvc", "zlibvc.vcxproj", "{8FD826F8-3739-44E6-8CC8-997122E53B8D}" | ||||||
| EndProject | EndProject | ||||||
|  | Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "zlibstat", "zlibstat.vcxproj", "{745DEC58-EBB3-47A9-A9B8-4C6627C01BF8}" | ||||||
|  | EndProject | ||||||
|  | Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "testzlib", "testzlib.vcxproj", "{AA6666AA-E09F-4135-9C0C-4FE50C3C654B}" | ||||||
|  | EndProject | ||||||
|  | Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "testzlibdll", "testzlibdll.vcxproj", "{C52F9E7B-498A-42BE-8DB4-85A15694366A}" | ||||||
|  | EndProject | ||||||
|  | Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "minizip", "minizip.vcxproj", "{48CDD9DC-E09F-4135-9C0C-4FE50C3C654B}" | ||||||
|  | EndProject | ||||||
|  | Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "miniunz", "miniunz.vcxproj", "{C52F9E7B-498A-42BE-8DB4-85A15694382A}" | ||||||
|  | EndProject | ||||||
| Global | Global | ||||||
| 	GlobalSection(TeamFoundationVersionControl) = preSolution |  | ||||||
| 		SccNumberOfProjects = 1 |  | ||||||
| 		SccEnterpriseProvider = {4CA58AB2-18FA-4F8D-95D4-32DDF27D184C} |  | ||||||
| 		SccTeamFoundationServer = http://iltfsapp01:8080/tfs/mediamind |  | ||||||
| 		SccLocalPath0 = . |  | ||||||
| 	EndGlobalSection |  | ||||||
| 	GlobalSection(SolutionConfigurationPlatforms) = preSolution | 	GlobalSection(SolutionConfigurationPlatforms) = preSolution | ||||||
|  | 		Debug|Itanium = Debug|Itanium | ||||||
|  | 		Debug|Win32 = Debug|Win32 | ||||||
| 		Debug|x64 = Debug|x64 | 		Debug|x64 = Debug|x64 | ||||||
|  | 		Release|Itanium = Release|Itanium | ||||||
|  | 		Release|Win32 = Release|Win32 | ||||||
| 		Release|x64 = Release|x64 | 		Release|x64 = Release|x64 | ||||||
|  | 		ReleaseWithoutAsm|Itanium = ReleaseWithoutAsm|Itanium | ||||||
|  | 		ReleaseWithoutAsm|Win32 = ReleaseWithoutAsm|Win32 | ||||||
|  | 		ReleaseWithoutAsm|x64 = ReleaseWithoutAsm|x64 | ||||||
| 	EndGlobalSection | 	EndGlobalSection | ||||||
| 	GlobalSection(ProjectConfigurationPlatforms) = postSolution | 	GlobalSection(ProjectConfigurationPlatforms) = postSolution | ||||||
|  | 		{8FD826F8-3739-44E6-8CC8-997122E53B8D}.Debug|Itanium.ActiveCfg = Debug|Win32 | ||||||
|  | 		{8FD826F8-3739-44E6-8CC8-997122E53B8D}.Debug|Win32.ActiveCfg = Debug|Win32 | ||||||
|  | 		{8FD826F8-3739-44E6-8CC8-997122E53B8D}.Debug|Win32.Build.0 = Debug|Win32 | ||||||
| 		{8FD826F8-3739-44E6-8CC8-997122E53B8D}.Debug|x64.ActiveCfg = Debug|x64 | 		{8FD826F8-3739-44E6-8CC8-997122E53B8D}.Debug|x64.ActiveCfg = Debug|x64 | ||||||
| 		{8FD826F8-3739-44E6-8CC8-997122E53B8D}.Debug|x64.Build.0 = Debug|x64 | 		{8FD826F8-3739-44E6-8CC8-997122E53B8D}.Debug|x64.Build.0 = Debug|x64 | ||||||
|  | 		{8FD826F8-3739-44E6-8CC8-997122E53B8D}.Release|Itanium.ActiveCfg = Release|Win32 | ||||||
|  | 		{8FD826F8-3739-44E6-8CC8-997122E53B8D}.Release|Win32.ActiveCfg = Release|Win32 | ||||||
|  | 		{8FD826F8-3739-44E6-8CC8-997122E53B8D}.Release|Win32.Build.0 = Release|Win32 | ||||||
| 		{8FD826F8-3739-44E6-8CC8-997122E53B8D}.Release|x64.ActiveCfg = Release|x64 | 		{8FD826F8-3739-44E6-8CC8-997122E53B8D}.Release|x64.ActiveCfg = Release|x64 | ||||||
| 		{8FD826F8-3739-44E6-8CC8-997122E53B8D}.Release|x64.Build.0 = Release|x64 | 		{8FD826F8-3739-44E6-8CC8-997122E53B8D}.Release|x64.Build.0 = Release|x64 | ||||||
|  | 		{8FD826F8-3739-44E6-8CC8-997122E53B8D}.ReleaseWithoutAsm|Itanium.ActiveCfg = ReleaseWithoutAsm|Win32 | ||||||
|  | 		{8FD826F8-3739-44E6-8CC8-997122E53B8D}.ReleaseWithoutAsm|Win32.ActiveCfg = ReleaseWithoutAsm|Win32 | ||||||
|  | 		{8FD826F8-3739-44E6-8CC8-997122E53B8D}.ReleaseWithoutAsm|Win32.Build.0 = ReleaseWithoutAsm|Win32 | ||||||
|  | 		{8FD826F8-3739-44E6-8CC8-997122E53B8D}.ReleaseWithoutAsm|x64.ActiveCfg = ReleaseWithoutAsm|x64 | ||||||
|  | 		{8FD826F8-3739-44E6-8CC8-997122E53B8D}.ReleaseWithoutAsm|x64.Build.0 = ReleaseWithoutAsm|x64 | ||||||
|  | 		{745DEC58-EBB3-47A9-A9B8-4C6627C01BF8}.Debug|Itanium.ActiveCfg = Debug|Win32 | ||||||
|  | 		{745DEC58-EBB3-47A9-A9B8-4C6627C01BF8}.Debug|Win32.ActiveCfg = Debug|Win32 | ||||||
|  | 		{745DEC58-EBB3-47A9-A9B8-4C6627C01BF8}.Debug|Win32.Build.0 = Debug|Win32 | ||||||
|  | 		{745DEC58-EBB3-47A9-A9B8-4C6627C01BF8}.Debug|x64.ActiveCfg = Debug|x64 | ||||||
|  | 		{745DEC58-EBB3-47A9-A9B8-4C6627C01BF8}.Debug|x64.Build.0 = Debug|x64 | ||||||
|  | 		{745DEC58-EBB3-47A9-A9B8-4C6627C01BF8}.Release|Itanium.ActiveCfg = Release|Win32 | ||||||
|  | 		{745DEC58-EBB3-47A9-A9B8-4C6627C01BF8}.Release|Win32.ActiveCfg = Release|Win32 | ||||||
|  | 		{745DEC58-EBB3-47A9-A9B8-4C6627C01BF8}.Release|Win32.Build.0 = Release|Win32 | ||||||
|  | 		{745DEC58-EBB3-47A9-A9B8-4C6627C01BF8}.Release|x64.ActiveCfg = Release|x64 | ||||||
|  | 		{745DEC58-EBB3-47A9-A9B8-4C6627C01BF8}.Release|x64.Build.0 = Release|x64 | ||||||
|  | 		{745DEC58-EBB3-47A9-A9B8-4C6627C01BF8}.ReleaseWithoutAsm|Itanium.ActiveCfg = ReleaseWithoutAsm|Win32 | ||||||
|  | 		{745DEC58-EBB3-47A9-A9B8-4C6627C01BF8}.ReleaseWithoutAsm|Win32.ActiveCfg = ReleaseWithoutAsm|Win32 | ||||||
|  | 		{745DEC58-EBB3-47A9-A9B8-4C6627C01BF8}.ReleaseWithoutAsm|Win32.Build.0 = ReleaseWithoutAsm|Win32 | ||||||
|  | 		{745DEC58-EBB3-47A9-A9B8-4C6627C01BF8}.ReleaseWithoutAsm|x64.ActiveCfg = ReleaseWithoutAsm|x64 | ||||||
|  | 		{745DEC58-EBB3-47A9-A9B8-4C6627C01BF8}.ReleaseWithoutAsm|x64.Build.0 = ReleaseWithoutAsm|x64 | ||||||
|  | 		{AA6666AA-E09F-4135-9C0C-4FE50C3C654B}.Debug|Itanium.ActiveCfg = Debug|Win32 | ||||||
|  | 		{AA6666AA-E09F-4135-9C0C-4FE50C3C654B}.Debug|Win32.ActiveCfg = Debug|Win32 | ||||||
|  | 		{AA6666AA-E09F-4135-9C0C-4FE50C3C654B}.Debug|Win32.Build.0 = Debug|Win32 | ||||||
|  | 		{AA6666AA-E09F-4135-9C0C-4FE50C3C654B}.Debug|x64.ActiveCfg = Debug|x64 | ||||||
|  | 		{AA6666AA-E09F-4135-9C0C-4FE50C3C654B}.Debug|x64.Build.0 = Debug|x64 | ||||||
|  | 		{AA6666AA-E09F-4135-9C0C-4FE50C3C654B}.Release|Itanium.ActiveCfg = Release|Win32 | ||||||
|  | 		{AA6666AA-E09F-4135-9C0C-4FE50C3C654B}.Release|Win32.ActiveCfg = Release|Win32 | ||||||
|  | 		{AA6666AA-E09F-4135-9C0C-4FE50C3C654B}.Release|Win32.Build.0 = Release|Win32 | ||||||
|  | 		{AA6666AA-E09F-4135-9C0C-4FE50C3C654B}.Release|x64.ActiveCfg = Release|x64 | ||||||
|  | 		{AA6666AA-E09F-4135-9C0C-4FE50C3C654B}.Release|x64.Build.0 = Release|x64 | ||||||
|  | 		{AA6666AA-E09F-4135-9C0C-4FE50C3C654B}.ReleaseWithoutAsm|Itanium.ActiveCfg = ReleaseWithoutAsm|Win32 | ||||||
|  | 		{AA6666AA-E09F-4135-9C0C-4FE50C3C654B}.ReleaseWithoutAsm|Win32.ActiveCfg = ReleaseWithoutAsm|Win32 | ||||||
|  | 		{AA6666AA-E09F-4135-9C0C-4FE50C3C654B}.ReleaseWithoutAsm|Win32.Build.0 = ReleaseWithoutAsm|Win32 | ||||||
|  | 		{AA6666AA-E09F-4135-9C0C-4FE50C3C654B}.ReleaseWithoutAsm|x64.ActiveCfg = ReleaseWithoutAsm|x64 | ||||||
|  | 		{AA6666AA-E09F-4135-9C0C-4FE50C3C654B}.ReleaseWithoutAsm|x64.Build.0 = ReleaseWithoutAsm|x64 | ||||||
|  | 		{C52F9E7B-498A-42BE-8DB4-85A15694366A}.Debug|Itanium.ActiveCfg = Debug|Win32 | ||||||
|  | 		{C52F9E7B-498A-42BE-8DB4-85A15694366A}.Debug|Win32.ActiveCfg = Debug|Win32 | ||||||
|  | 		{C52F9E7B-498A-42BE-8DB4-85A15694366A}.Debug|Win32.Build.0 = Debug|Win32 | ||||||
|  | 		{C52F9E7B-498A-42BE-8DB4-85A15694366A}.Debug|x64.ActiveCfg = Debug|x64 | ||||||
|  | 		{C52F9E7B-498A-42BE-8DB4-85A15694366A}.Debug|x64.Build.0 = Debug|x64 | ||||||
|  | 		{C52F9E7B-498A-42BE-8DB4-85A15694366A}.Release|Itanium.ActiveCfg = Release|Win32 | ||||||
|  | 		{C52F9E7B-498A-42BE-8DB4-85A15694366A}.Release|Win32.ActiveCfg = Release|Win32 | ||||||
|  | 		{C52F9E7B-498A-42BE-8DB4-85A15694366A}.Release|Win32.Build.0 = Release|Win32 | ||||||
|  | 		{C52F9E7B-498A-42BE-8DB4-85A15694366A}.Release|x64.ActiveCfg = Release|x64 | ||||||
|  | 		{C52F9E7B-498A-42BE-8DB4-85A15694366A}.Release|x64.Build.0 = Release|x64 | ||||||
|  | 		{C52F9E7B-498A-42BE-8DB4-85A15694366A}.ReleaseWithoutAsm|Itanium.ActiveCfg = Release|Win32 | ||||||
|  | 		{C52F9E7B-498A-42BE-8DB4-85A15694366A}.ReleaseWithoutAsm|Win32.ActiveCfg = Release|Win32 | ||||||
|  | 		{C52F9E7B-498A-42BE-8DB4-85A15694366A}.ReleaseWithoutAsm|x64.ActiveCfg = Release|x64 | ||||||
|  | 		{48CDD9DC-E09F-4135-9C0C-4FE50C3C654B}.Debug|Itanium.ActiveCfg = Debug|Win32 | ||||||
|  | 		{48CDD9DC-E09F-4135-9C0C-4FE50C3C654B}.Debug|Win32.ActiveCfg = Debug|Win32 | ||||||
|  | 		{48CDD9DC-E09F-4135-9C0C-4FE50C3C654B}.Debug|Win32.Build.0 = Debug|Win32 | ||||||
|  | 		{48CDD9DC-E09F-4135-9C0C-4FE50C3C654B}.Debug|x64.ActiveCfg = Debug|x64 | ||||||
|  | 		{48CDD9DC-E09F-4135-9C0C-4FE50C3C654B}.Debug|x64.Build.0 = Debug|x64 | ||||||
|  | 		{48CDD9DC-E09F-4135-9C0C-4FE50C3C654B}.Release|Itanium.ActiveCfg = Release|Win32 | ||||||
|  | 		{48CDD9DC-E09F-4135-9C0C-4FE50C3C654B}.Release|Win32.ActiveCfg = Release|Win32 | ||||||
|  | 		{48CDD9DC-E09F-4135-9C0C-4FE50C3C654B}.Release|Win32.Build.0 = Release|Win32 | ||||||
|  | 		{48CDD9DC-E09F-4135-9C0C-4FE50C3C654B}.Release|x64.ActiveCfg = Release|x64 | ||||||
|  | 		{48CDD9DC-E09F-4135-9C0C-4FE50C3C654B}.Release|x64.Build.0 = Release|x64 | ||||||
|  | 		{48CDD9DC-E09F-4135-9C0C-4FE50C3C654B}.ReleaseWithoutAsm|Itanium.ActiveCfg = Release|Win32 | ||||||
|  | 		{48CDD9DC-E09F-4135-9C0C-4FE50C3C654B}.ReleaseWithoutAsm|Win32.ActiveCfg = Release|Win32 | ||||||
|  | 		{48CDD9DC-E09F-4135-9C0C-4FE50C3C654B}.ReleaseWithoutAsm|x64.ActiveCfg = Release|x64 | ||||||
|  | 		{C52F9E7B-498A-42BE-8DB4-85A15694382A}.Debug|Itanium.ActiveCfg = Debug|Win32 | ||||||
|  | 		{C52F9E7B-498A-42BE-8DB4-85A15694382A}.Debug|Win32.ActiveCfg = Debug|Win32 | ||||||
|  | 		{C52F9E7B-498A-42BE-8DB4-85A15694382A}.Debug|Win32.Build.0 = Debug|Win32 | ||||||
|  | 		{C52F9E7B-498A-42BE-8DB4-85A15694382A}.Debug|x64.ActiveCfg = Debug|x64 | ||||||
|  | 		{C52F9E7B-498A-42BE-8DB4-85A15694382A}.Debug|x64.Build.0 = Debug|x64 | ||||||
|  | 		{C52F9E7B-498A-42BE-8DB4-85A15694382A}.Release|Itanium.ActiveCfg = Release|Win32 | ||||||
|  | 		{C52F9E7B-498A-42BE-8DB4-85A15694382A}.Release|Win32.ActiveCfg = Release|Win32 | ||||||
|  | 		{C52F9E7B-498A-42BE-8DB4-85A15694382A}.Release|Win32.Build.0 = Release|Win32 | ||||||
|  | 		{C52F9E7B-498A-42BE-8DB4-85A15694382A}.Release|x64.ActiveCfg = Release|x64 | ||||||
|  | 		{C52F9E7B-498A-42BE-8DB4-85A15694382A}.Release|x64.Build.0 = Release|x64 | ||||||
|  | 		{C52F9E7B-498A-42BE-8DB4-85A15694382A}.ReleaseWithoutAsm|Itanium.ActiveCfg = Release|Win32 | ||||||
|  | 		{C52F9E7B-498A-42BE-8DB4-85A15694382A}.ReleaseWithoutAsm|Win32.ActiveCfg = Release|Win32 | ||||||
|  | 		{C52F9E7B-498A-42BE-8DB4-85A15694382A}.ReleaseWithoutAsm|x64.ActiveCfg = Release|x64 | ||||||
| 	EndGlobalSection | 	EndGlobalSection | ||||||
| 	GlobalSection(SolutionProperties) = preSolution | 	GlobalSection(SolutionProperties) = preSolution | ||||||
| 		HideSolutionNode = FALSE | 		HideSolutionNode = FALSE | ||||||
|   | |||||||
| @@ -1,10 +1,38 @@ | |||||||
| <?xml version="1.0" encoding="utf-8"?> | <?xml version="1.0" encoding="utf-8"?> | ||||||
| <Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | <Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||||||
|   <ItemGroup Label="ProjectConfigurations"> |   <ItemGroup Label="ProjectConfigurations"> | ||||||
|  |     <ProjectConfiguration Include="Debug|Itanium"> | ||||||
|  |       <Configuration>Debug</Configuration> | ||||||
|  |       <Platform>Itanium</Platform> | ||||||
|  |     </ProjectConfiguration> | ||||||
|  |     <ProjectConfiguration Include="Debug|Win32"> | ||||||
|  |       <Configuration>Debug</Configuration> | ||||||
|  |       <Platform>Win32</Platform> | ||||||
|  |     </ProjectConfiguration> | ||||||
|     <ProjectConfiguration Include="Debug|x64"> |     <ProjectConfiguration Include="Debug|x64"> | ||||||
|       <Configuration>Debug</Configuration> |       <Configuration>Debug</Configuration> | ||||||
|       <Platform>x64</Platform> |       <Platform>x64</Platform> | ||||||
|     </ProjectConfiguration> |     </ProjectConfiguration> | ||||||
|  |     <ProjectConfiguration Include="ReleaseWithoutAsm|Itanium"> | ||||||
|  |       <Configuration>ReleaseWithoutAsm</Configuration> | ||||||
|  |       <Platform>Itanium</Platform> | ||||||
|  |     </ProjectConfiguration> | ||||||
|  |     <ProjectConfiguration Include="ReleaseWithoutAsm|Win32"> | ||||||
|  |       <Configuration>ReleaseWithoutAsm</Configuration> | ||||||
|  |       <Platform>Win32</Platform> | ||||||
|  |     </ProjectConfiguration> | ||||||
|  |     <ProjectConfiguration Include="ReleaseWithoutAsm|x64"> | ||||||
|  |       <Configuration>ReleaseWithoutAsm</Configuration> | ||||||
|  |       <Platform>x64</Platform> | ||||||
|  |     </ProjectConfiguration> | ||||||
|  |     <ProjectConfiguration Include="Release|Itanium"> | ||||||
|  |       <Configuration>Release</Configuration> | ||||||
|  |       <Platform>Itanium</Platform> | ||||||
|  |     </ProjectConfiguration> | ||||||
|  |     <ProjectConfiguration Include="Release|Win32"> | ||||||
|  |       <Configuration>Release</Configuration> | ||||||
|  |       <Platform>Win32</Platform> | ||||||
|  |     </ProjectConfiguration> | ||||||
|     <ProjectConfiguration Include="Release|x64"> |     <ProjectConfiguration Include="Release|x64"> | ||||||
|       <Configuration>Release</Configuration> |       <Configuration>Release</Configuration> | ||||||
|       <Platform>x64</Platform> |       <Platform>x64</Platform> | ||||||
| @@ -14,12 +42,50 @@ | |||||||
|     <ProjectGuid>{8FD826F8-3739-44E6-8CC8-997122E53B8D}</ProjectGuid> |     <ProjectGuid>{8FD826F8-3739-44E6-8CC8-997122E53B8D}</ProjectGuid> | ||||||
|   </PropertyGroup> |   </PropertyGroup> | ||||||
|   <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" /> |   <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" /> | ||||||
|  |   <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration"> | ||||||
|  |     <ConfigurationType>DynamicLibrary</ConfigurationType> | ||||||
|  |     <UseOfMfc>false</UseOfMfc> | ||||||
|  |     <WholeProgramOptimization>true</WholeProgramOptimization> | ||||||
|  |     <PlatformToolset>v110</PlatformToolset> | ||||||
|  |   </PropertyGroup> | ||||||
|  |   <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='ReleaseWithoutAsm|Win32'" Label="Configuration"> | ||||||
|  |     <ConfigurationType>DynamicLibrary</ConfigurationType> | ||||||
|  |     <UseOfMfc>false</UseOfMfc> | ||||||
|  |     <WholeProgramOptimization>true</WholeProgramOptimization> | ||||||
|  |     <PlatformToolset>v110</PlatformToolset> | ||||||
|  |   </PropertyGroup> | ||||||
|  |   <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration"> | ||||||
|  |     <ConfigurationType>DynamicLibrary</ConfigurationType> | ||||||
|  |     <UseOfMfc>false</UseOfMfc> | ||||||
|  |     <PlatformToolset>v110</PlatformToolset> | ||||||
|  |     <CharacterSet>Unicode</CharacterSet> | ||||||
|  |   </PropertyGroup> | ||||||
|  |   <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Itanium'" Label="Configuration"> | ||||||
|  |     <ConfigurationType>DynamicLibrary</ConfigurationType> | ||||||
|  |     <UseOfMfc>false</UseOfMfc> | ||||||
|  |     <WholeProgramOptimization>true</WholeProgramOptimization> | ||||||
|  |   </PropertyGroup> | ||||||
|  |   <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='ReleaseWithoutAsm|Itanium'" Label="Configuration"> | ||||||
|  |     <ConfigurationType>DynamicLibrary</ConfigurationType> | ||||||
|  |     <UseOfMfc>false</UseOfMfc> | ||||||
|  |     <WholeProgramOptimization>true</WholeProgramOptimization> | ||||||
|  |   </PropertyGroup> | ||||||
|  |   <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Itanium'" Label="Configuration"> | ||||||
|  |     <ConfigurationType>DynamicLibrary</ConfigurationType> | ||||||
|  |     <UseOfMfc>false</UseOfMfc> | ||||||
|  |   </PropertyGroup> | ||||||
|   <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration"> |   <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration"> | ||||||
|     <ConfigurationType>DynamicLibrary</ConfigurationType> |     <ConfigurationType>DynamicLibrary</ConfigurationType> | ||||||
|     <UseOfMfc>false</UseOfMfc> |     <UseOfMfc>false</UseOfMfc> | ||||||
|     <WholeProgramOptimization>true</WholeProgramOptimization> |     <WholeProgramOptimization>true</WholeProgramOptimization> | ||||||
|     <PlatformToolset>v110</PlatformToolset> |     <PlatformToolset>v110</PlatformToolset> | ||||||
|   </PropertyGroup> |   </PropertyGroup> | ||||||
|  |   <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='ReleaseWithoutAsm|x64'" Label="Configuration"> | ||||||
|  |     <ConfigurationType>DynamicLibrary</ConfigurationType> | ||||||
|  |     <UseOfMfc>false</UseOfMfc> | ||||||
|  |     <WholeProgramOptimization>true</WholeProgramOptimization> | ||||||
|  |     <PlatformToolset>v110</PlatformToolset> | ||||||
|  |   </PropertyGroup> | ||||||
|   <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration"> |   <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration"> | ||||||
|     <ConfigurationType>DynamicLibrary</ConfigurationType> |     <ConfigurationType>DynamicLibrary</ConfigurationType> | ||||||
|     <UseOfMfc>false</UseOfMfc> |     <UseOfMfc>false</UseOfMfc> | ||||||
| @@ -28,32 +94,258 @@ | |||||||
|   <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" /> |   <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" /> | ||||||
|   <ImportGroup Label="ExtensionSettings"> |   <ImportGroup Label="ExtensionSettings"> | ||||||
|   </ImportGroup> |   </ImportGroup> | ||||||
|  |   <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="PropertySheets"> | ||||||
|  |     <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> | ||||||
|  |   </ImportGroup> | ||||||
|  |   <ImportGroup Condition="'$(Configuration)|$(Platform)'=='ReleaseWithoutAsm|Win32'" Label="PropertySheets"> | ||||||
|  |     <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> | ||||||
|  |   </ImportGroup> | ||||||
|  |   <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="PropertySheets"> | ||||||
|  |     <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> | ||||||
|  |   </ImportGroup> | ||||||
|  |   <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|Itanium'" Label="PropertySheets"> | ||||||
|  |     <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> | ||||||
|  |   </ImportGroup> | ||||||
|  |   <ImportGroup Condition="'$(Configuration)|$(Platform)'=='ReleaseWithoutAsm|Itanium'" Label="PropertySheets"> | ||||||
|  |     <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> | ||||||
|  |   </ImportGroup> | ||||||
|  |   <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Itanium'" Label="PropertySheets"> | ||||||
|  |     <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> | ||||||
|  |   </ImportGroup> | ||||||
|   <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="PropertySheets"> |   <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="PropertySheets"> | ||||||
|     <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> |     <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> | ||||||
|   </ImportGroup> |   </ImportGroup> | ||||||
|  |   <ImportGroup Condition="'$(Configuration)|$(Platform)'=='ReleaseWithoutAsm|x64'" Label="PropertySheets"> | ||||||
|  |     <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> | ||||||
|  |   </ImportGroup> | ||||||
|   <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="PropertySheets"> |   <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="PropertySheets"> | ||||||
|     <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> |     <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> | ||||||
|   </ImportGroup> |   </ImportGroup> | ||||||
|   <PropertyGroup Label="UserMacros" /> |   <PropertyGroup Label="UserMacros" /> | ||||||
|   <PropertyGroup> |   <PropertyGroup> | ||||||
|     <_ProjectFileVersion>10.0.30128.1</_ProjectFileVersion> |     <_ProjectFileVersion>10.0.30128.1</_ProjectFileVersion> | ||||||
|  |     <OutDir Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">x86\ZlibDll$(Configuration)\</OutDir> | ||||||
|  |     <IntDir Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">x86\ZlibDll$(Configuration)\Tmp\</IntDir> | ||||||
|  |     <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">true</LinkIncremental> | ||||||
|  |     <GenerateManifest Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">false</GenerateManifest> | ||||||
|  |     <OutDir Condition="'$(Configuration)|$(Platform)'=='ReleaseWithoutAsm|Win32'">x86\ZlibDll$(Configuration)\</OutDir> | ||||||
|  |     <IntDir Condition="'$(Configuration)|$(Platform)'=='ReleaseWithoutAsm|Win32'">x86\ZlibDll$(Configuration)\Tmp\</IntDir> | ||||||
|  |     <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='ReleaseWithoutAsm|Win32'">false</LinkIncremental> | ||||||
|  |     <GenerateManifest Condition="'$(Configuration)|$(Platform)'=='ReleaseWithoutAsm|Win32'">false</GenerateManifest> | ||||||
|  |     <OutDir Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">x86\ZlibDll$(Configuration)\</OutDir> | ||||||
|  |     <IntDir Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">x86\ZlibDll$(Configuration)\Tmp\</IntDir> | ||||||
|  |     <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">false</LinkIncremental> | ||||||
|  |     <GenerateManifest Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">false</GenerateManifest> | ||||||
|     <OutDir Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">x64\ZlibDll$(Configuration)\</OutDir> |     <OutDir Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">x64\ZlibDll$(Configuration)\</OutDir> | ||||||
|     <IntDir Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">x64\ZlibDll$(Configuration)\Tmp\</IntDir> |     <IntDir Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">x64\ZlibDll$(Configuration)\Tmp\</IntDir> | ||||||
|     <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</LinkIncremental> |     <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</LinkIncremental> | ||||||
|     <GenerateManifest Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">false</GenerateManifest> |     <GenerateManifest Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">false</GenerateManifest> | ||||||
|  |     <OutDir Condition="'$(Configuration)|$(Platform)'=='Debug|Itanium'">ia64\ZlibDll$(Configuration)\</OutDir> | ||||||
|  |     <IntDir Condition="'$(Configuration)|$(Platform)'=='Debug|Itanium'">ia64\ZlibDll$(Configuration)\Tmp\</IntDir> | ||||||
|  |     <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Debug|Itanium'">true</LinkIncremental> | ||||||
|  |     <GenerateManifest Condition="'$(Configuration)|$(Platform)'=='Debug|Itanium'">false</GenerateManifest> | ||||||
|  |     <OutDir Condition="'$(Configuration)|$(Platform)'=='ReleaseWithoutAsm|x64'">x64\ZlibDll$(Configuration)\</OutDir> | ||||||
|  |     <IntDir Condition="'$(Configuration)|$(Platform)'=='ReleaseWithoutAsm|x64'">x64\ZlibDll$(Configuration)\Tmp\</IntDir> | ||||||
|  |     <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='ReleaseWithoutAsm|x64'">false</LinkIncremental> | ||||||
|  |     <GenerateManifest Condition="'$(Configuration)|$(Platform)'=='ReleaseWithoutAsm|x64'">false</GenerateManifest> | ||||||
|  |     <OutDir Condition="'$(Configuration)|$(Platform)'=='ReleaseWithoutAsm|Itanium'">ia64\ZlibDll$(Configuration)\</OutDir> | ||||||
|  |     <IntDir Condition="'$(Configuration)|$(Platform)'=='ReleaseWithoutAsm|Itanium'">ia64\ZlibDll$(Configuration)\Tmp\</IntDir> | ||||||
|  |     <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='ReleaseWithoutAsm|Itanium'">false</LinkIncremental> | ||||||
|  |     <GenerateManifest Condition="'$(Configuration)|$(Platform)'=='ReleaseWithoutAsm|Itanium'">false</GenerateManifest> | ||||||
|     <OutDir Condition="'$(Configuration)|$(Platform)'=='Release|x64'">x64\ZlibDll$(Configuration)\</OutDir> |     <OutDir Condition="'$(Configuration)|$(Platform)'=='Release|x64'">x64\ZlibDll$(Configuration)\</OutDir> | ||||||
|     <IntDir Condition="'$(Configuration)|$(Platform)'=='Release|x64'">x64\ZlibDll$(Configuration)\Tmp\</IntDir> |     <IntDir Condition="'$(Configuration)|$(Platform)'=='Release|x64'">x64\ZlibDll$(Configuration)\Tmp\</IntDir> | ||||||
|     <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Release|x64'">false</LinkIncremental> |     <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Release|x64'">false</LinkIncremental> | ||||||
|     <GenerateManifest Condition="'$(Configuration)|$(Platform)'=='Release|x64'">false</GenerateManifest> |     <GenerateManifest Condition="'$(Configuration)|$(Platform)'=='Release|x64'">false</GenerateManifest> | ||||||
|  |     <OutDir Condition="'$(Configuration)|$(Platform)'=='Release|Itanium'">ia64\ZlibDll$(Configuration)\</OutDir> | ||||||
|  |     <IntDir Condition="'$(Configuration)|$(Platform)'=='Release|Itanium'">ia64\ZlibDll$(Configuration)\Tmp\</IntDir> | ||||||
|  |     <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Release|Itanium'">false</LinkIncremental> | ||||||
|  |     <GenerateManifest Condition="'$(Configuration)|$(Platform)'=='Release|Itanium'">false</GenerateManifest> | ||||||
|  |     <CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='Debug|Itanium'">AllRules.ruleset</CodeAnalysisRuleSet> | ||||||
|  |     <CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='Debug|Itanium'" /> | ||||||
|  |     <CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='Debug|Itanium'" /> | ||||||
|  |     <CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">AllRules.ruleset</CodeAnalysisRuleSet> | ||||||
|  |     <CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" /> | ||||||
|  |     <CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" /> | ||||||
|     <CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">AllRules.ruleset</CodeAnalysisRuleSet> |     <CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">AllRules.ruleset</CodeAnalysisRuleSet> | ||||||
|     <CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" /> |     <CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" /> | ||||||
|     <CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" /> |     <CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" /> | ||||||
|  |     <CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='ReleaseWithoutAsm|Itanium'">AllRules.ruleset</CodeAnalysisRuleSet> | ||||||
|  |     <CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='ReleaseWithoutAsm|Itanium'" /> | ||||||
|  |     <CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='ReleaseWithoutAsm|Itanium'" /> | ||||||
|  |     <CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='ReleaseWithoutAsm|Win32'">AllRules.ruleset</CodeAnalysisRuleSet> | ||||||
|  |     <CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='ReleaseWithoutAsm|Win32'" /> | ||||||
|  |     <CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='ReleaseWithoutAsm|Win32'" /> | ||||||
|  |     <CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='ReleaseWithoutAsm|x64'">AllRules.ruleset</CodeAnalysisRuleSet> | ||||||
|  |     <CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='ReleaseWithoutAsm|x64'" /> | ||||||
|  |     <CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='ReleaseWithoutAsm|x64'" /> | ||||||
|  |     <CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='Release|Itanium'">AllRules.ruleset</CodeAnalysisRuleSet> | ||||||
|  |     <CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='Release|Itanium'" /> | ||||||
|  |     <CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='Release|Itanium'" /> | ||||||
|  |     <CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">AllRules.ruleset</CodeAnalysisRuleSet> | ||||||
|  |     <CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" /> | ||||||
|  |     <CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" /> | ||||||
|     <CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='Release|x64'">AllRules.ruleset</CodeAnalysisRuleSet> |     <CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='Release|x64'">AllRules.ruleset</CodeAnalysisRuleSet> | ||||||
|     <CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='Release|x64'" /> |     <CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='Release|x64'" /> | ||||||
|     <CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='Release|x64'" /> |     <CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='Release|x64'" /> | ||||||
|  |     <TargetName Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">zlibwapi</TargetName> | ||||||
|  |     <TargetName Condition="'$(Configuration)|$(Platform)'=='ReleaseWithoutAsm|Win32'">zlibwapi</TargetName> | ||||||
|  |     <TargetName Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">zlibwapi</TargetName> | ||||||
|     <TargetName Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">zlibwapi</TargetName> |     <TargetName Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">zlibwapi</TargetName> | ||||||
|  |     <TargetName Condition="'$(Configuration)|$(Platform)'=='ReleaseWithoutAsm|x64'">zlibwapi</TargetName> | ||||||
|     <TargetName Condition="'$(Configuration)|$(Platform)'=='Release|x64'">zlibwapi</TargetName> |     <TargetName Condition="'$(Configuration)|$(Platform)'=='Release|x64'">zlibwapi</TargetName> | ||||||
|   </PropertyGroup> |   </PropertyGroup> | ||||||
|  |   <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> | ||||||
|  |     <Midl> | ||||||
|  |       <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions> | ||||||
|  |       <MkTypLibCompatible>true</MkTypLibCompatible> | ||||||
|  |       <SuppressStartupBanner>true</SuppressStartupBanner> | ||||||
|  |       <TargetEnvironment>Win32</TargetEnvironment> | ||||||
|  |       <TypeLibraryName>$(OutDir)zlibvc.tlb</TypeLibraryName> | ||||||
|  |     </Midl> | ||||||
|  |     <ClCompile> | ||||||
|  |       <Optimization>Disabled</Optimization> | ||||||
|  |       <AdditionalIncludeDirectories>..\..\..;..\..\masmx86;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> | ||||||
|  |       <PreprocessorDefinitions>WIN32;_CRT_NONSTDC_NO_DEPRECATE;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_WARNINGS;ZLIB_WINAPI;ASMV;ASMINF;%(PreprocessorDefinitions)</PreprocessorDefinitions> | ||||||
|  |       <ExceptionHandling> | ||||||
|  |       </ExceptionHandling> | ||||||
|  |       <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary> | ||||||
|  |       <BufferSecurityCheck>false</BufferSecurityCheck> | ||||||
|  |       <PrecompiledHeaderOutputFile>$(IntDir)zlibvc.pch</PrecompiledHeaderOutputFile> | ||||||
|  |       <AssemblerListingLocation>$(IntDir)</AssemblerListingLocation> | ||||||
|  |       <ObjectFileName>$(IntDir)</ObjectFileName> | ||||||
|  |       <ProgramDataBaseFileName>$(OutDir)</ProgramDataBaseFileName> | ||||||
|  |       <BrowseInformation> | ||||||
|  |       </BrowseInformation> | ||||||
|  |       <WarningLevel>Level3</WarningLevel> | ||||||
|  |       <SuppressStartupBanner>true</SuppressStartupBanner> | ||||||
|  |       <DebugInformationFormat>ProgramDatabase</DebugInformationFormat> | ||||||
|  |     </ClCompile> | ||||||
|  |     <ResourceCompile> | ||||||
|  |       <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions> | ||||||
|  |       <Culture>0x040c</Culture> | ||||||
|  |     </ResourceCompile> | ||||||
|  |     <Link> | ||||||
|  |       <AdditionalOptions>/MACHINE:I386 %(AdditionalOptions)</AdditionalOptions> | ||||||
|  |       <AdditionalDependencies>..\..\masmx86\match686.obj;..\..\masmx86\inffas32.obj;%(AdditionalDependencies)</AdditionalDependencies> | ||||||
|  |       <OutputFile>$(OutDir)zlibwapi.dll</OutputFile> | ||||||
|  |       <SuppressStartupBanner>true</SuppressStartupBanner> | ||||||
|  |       <ModuleDefinitionFile>.\zlibvc.def</ModuleDefinitionFile> | ||||||
|  |       <GenerateDebugInformation>true</GenerateDebugInformation> | ||||||
|  |       <ProgramDatabaseFile>$(OutDir)zlibwapi.pdb</ProgramDatabaseFile> | ||||||
|  |       <GenerateMapFile>true</GenerateMapFile> | ||||||
|  |       <MapFileName>$(OutDir)zlibwapi.map</MapFileName> | ||||||
|  |       <SubSystem>Windows</SubSystem> | ||||||
|  |       <RandomizedBaseAddress>false</RandomizedBaseAddress> | ||||||
|  |       <DataExecutionPrevention> | ||||||
|  |       </DataExecutionPrevention> | ||||||
|  |       <ImportLibrary>$(OutDir)zlibwapi.lib</ImportLibrary> | ||||||
|  |     </Link> | ||||||
|  |     <PreBuildEvent> | ||||||
|  |       <Command>cd ..\..\masmx86 | ||||||
|  | bld_ml32.bat</Command> | ||||||
|  |     </PreBuildEvent> | ||||||
|  |   </ItemDefinitionGroup> | ||||||
|  |   <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='ReleaseWithoutAsm|Win32'"> | ||||||
|  |     <Midl> | ||||||
|  |       <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions> | ||||||
|  |       <MkTypLibCompatible>true</MkTypLibCompatible> | ||||||
|  |       <SuppressStartupBanner>true</SuppressStartupBanner> | ||||||
|  |       <TargetEnvironment>Win32</TargetEnvironment> | ||||||
|  |       <TypeLibraryName>$(OutDir)zlibvc.tlb</TypeLibraryName> | ||||||
|  |     </Midl> | ||||||
|  |     <ClCompile> | ||||||
|  |       <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion> | ||||||
|  |       <AdditionalIncludeDirectories>..\..\..;..\..\masmx86;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> | ||||||
|  |       <PreprocessorDefinitions>WIN32;_CRT_NONSTDC_NO_DEPRECATE;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_WARNINGS;ZLIB_WINAPI;%(PreprocessorDefinitions)</PreprocessorDefinitions> | ||||||
|  |       <StringPooling>true</StringPooling> | ||||||
|  |       <ExceptionHandling> | ||||||
|  |       </ExceptionHandling> | ||||||
|  |       <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary> | ||||||
|  |       <BufferSecurityCheck>false</BufferSecurityCheck> | ||||||
|  |       <FunctionLevelLinking>true</FunctionLevelLinking> | ||||||
|  |       <PrecompiledHeaderOutputFile>$(IntDir)zlibvc.pch</PrecompiledHeaderOutputFile> | ||||||
|  |       <AssemblerOutput>All</AssemblerOutput> | ||||||
|  |       <AssemblerListingLocation>$(IntDir)</AssemblerListingLocation> | ||||||
|  |       <ObjectFileName>$(IntDir)</ObjectFileName> | ||||||
|  |       <ProgramDataBaseFileName>$(OutDir)</ProgramDataBaseFileName> | ||||||
|  |       <BrowseInformation> | ||||||
|  |       </BrowseInformation> | ||||||
|  |       <WarningLevel>Level3</WarningLevel> | ||||||
|  |       <SuppressStartupBanner>true</SuppressStartupBanner> | ||||||
|  |     </ClCompile> | ||||||
|  |     <ResourceCompile> | ||||||
|  |       <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions> | ||||||
|  |       <Culture>0x040c</Culture> | ||||||
|  |     </ResourceCompile> | ||||||
|  |     <Link> | ||||||
|  |       <AdditionalOptions>/MACHINE:I386 %(AdditionalOptions)</AdditionalOptions> | ||||||
|  |       <OutputFile>$(OutDir)zlibwapi.dll</OutputFile> | ||||||
|  |       <SuppressStartupBanner>true</SuppressStartupBanner> | ||||||
|  |       <IgnoreAllDefaultLibraries>false</IgnoreAllDefaultLibraries> | ||||||
|  |       <ModuleDefinitionFile>.\zlibvc.def</ModuleDefinitionFile> | ||||||
|  |       <ProgramDatabaseFile>$(OutDir)zlibwapi.pdb</ProgramDatabaseFile> | ||||||
|  |       <GenerateMapFile>true</GenerateMapFile> | ||||||
|  |       <MapFileName>$(OutDir)zlibwapi.map</MapFileName> | ||||||
|  |       <SubSystem>Windows</SubSystem> | ||||||
|  |       <RandomizedBaseAddress>false</RandomizedBaseAddress> | ||||||
|  |       <DataExecutionPrevention> | ||||||
|  |       </DataExecutionPrevention> | ||||||
|  |       <ImportLibrary>$(OutDir)zlibwapi.lib</ImportLibrary> | ||||||
|  |     </Link> | ||||||
|  |   </ItemDefinitionGroup> | ||||||
|  |   <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'"> | ||||||
|  |     <Midl> | ||||||
|  |       <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions> | ||||||
|  |       <MkTypLibCompatible>true</MkTypLibCompatible> | ||||||
|  |       <SuppressStartupBanner>true</SuppressStartupBanner> | ||||||
|  |       <TargetEnvironment>Win32</TargetEnvironment> | ||||||
|  |       <TypeLibraryName>$(OutDir)zlibvc.tlb</TypeLibraryName> | ||||||
|  |     </Midl> | ||||||
|  |     <ClCompile> | ||||||
|  |       <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion> | ||||||
|  |       <AdditionalIncludeDirectories>..\..\..;..\..\masmx86;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> | ||||||
|  |       <PreprocessorDefinitions>WIN32;_CRT_NONSTDC_NO_DEPRECATE;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_WARNINGS;ZLIB_WINAPI;ASMV;ASMINF;%(PreprocessorDefinitions)</PreprocessorDefinitions> | ||||||
|  |       <StringPooling>true</StringPooling> | ||||||
|  |       <ExceptionHandling> | ||||||
|  |       </ExceptionHandling> | ||||||
|  |       <RuntimeLibrary>MultiThreaded</RuntimeLibrary> | ||||||
|  |       <BufferSecurityCheck>false</BufferSecurityCheck> | ||||||
|  |       <FunctionLevelLinking>true</FunctionLevelLinking> | ||||||
|  |       <PrecompiledHeaderOutputFile>$(IntDir)zlibvc.pch</PrecompiledHeaderOutputFile> | ||||||
|  |       <AssemblerOutput>All</AssemblerOutput> | ||||||
|  |       <AssemblerListingLocation>$(IntDir)</AssemblerListingLocation> | ||||||
|  |       <ObjectFileName>$(IntDir)</ObjectFileName> | ||||||
|  |       <ProgramDataBaseFileName>$(OutDir)</ProgramDataBaseFileName> | ||||||
|  |       <BrowseInformation> | ||||||
|  |       </BrowseInformation> | ||||||
|  |       <WarningLevel>Level3</WarningLevel> | ||||||
|  |       <SuppressStartupBanner>true</SuppressStartupBanner> | ||||||
|  |     </ClCompile> | ||||||
|  |     <ResourceCompile> | ||||||
|  |       <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions> | ||||||
|  |       <Culture>0x040c</Culture> | ||||||
|  |     </ResourceCompile> | ||||||
|  |     <Link> | ||||||
|  |       <AdditionalOptions>/MACHINE:I386 %(AdditionalOptions)</AdditionalOptions> | ||||||
|  |       <AdditionalDependencies>..\..\masmx86\match686.obj;..\..\masmx86\inffas32.obj;%(AdditionalDependencies)</AdditionalDependencies> | ||||||
|  |       <OutputFile>$(OutDir)zlibwapi.dll</OutputFile> | ||||||
|  |       <SuppressStartupBanner>true</SuppressStartupBanner> | ||||||
|  |       <IgnoreAllDefaultLibraries>false</IgnoreAllDefaultLibraries> | ||||||
|  |       <ModuleDefinitionFile>.\zlibvc.def</ModuleDefinitionFile> | ||||||
|  |       <ProgramDatabaseFile>$(OutDir)zlibwapi.pdb</ProgramDatabaseFile> | ||||||
|  |       <GenerateMapFile>true</GenerateMapFile> | ||||||
|  |       <MapFileName>$(OutDir)zlibwapi.map</MapFileName> | ||||||
|  |       <SubSystem>Windows</SubSystem> | ||||||
|  |       <RandomizedBaseAddress>false</RandomizedBaseAddress> | ||||||
|  |       <DataExecutionPrevention> | ||||||
|  |       </DataExecutionPrevention> | ||||||
|  |       <ImportLibrary>$(OutDir)zlibwapi.lib</ImportLibrary> | ||||||
|  |     </Link> | ||||||
|  |     <PreBuildEvent> | ||||||
|  |       <Command>cd ..\..\masmx86 | ||||||
|  | bld_ml32.bat</Command> | ||||||
|  |     </PreBuildEvent> | ||||||
|  |   </ItemDefinitionGroup> | ||||||
|   <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'"> |   <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'"> | ||||||
|     <Midl> |     <Midl> | ||||||
|       <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions> |       <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions> | ||||||
| @@ -88,7 +380,7 @@ | |||||||
|       <AdditionalDependencies>..\..\masmx64\gvmat64.obj;..\..\masmx64\inffasx64.obj;%(AdditionalDependencies)</AdditionalDependencies> |       <AdditionalDependencies>..\..\masmx64\gvmat64.obj;..\..\masmx64\inffasx64.obj;%(AdditionalDependencies)</AdditionalDependencies> | ||||||
|       <OutputFile>$(OutDir)zlibwapi.dll</OutputFile> |       <OutputFile>$(OutDir)zlibwapi.dll</OutputFile> | ||||||
|       <SuppressStartupBanner>true</SuppressStartupBanner> |       <SuppressStartupBanner>true</SuppressStartupBanner> | ||||||
|       <ModuleDefinitionFile>.\zlibvc11.def</ModuleDefinitionFile> |       <ModuleDefinitionFile>.\zlibvc.def</ModuleDefinitionFile> | ||||||
|       <GenerateDebugInformation>true</GenerateDebugInformation> |       <GenerateDebugInformation>true</GenerateDebugInformation> | ||||||
|       <ProgramDatabaseFile>$(OutDir)zlibwapi.pdb</ProgramDatabaseFile> |       <ProgramDatabaseFile>$(OutDir)zlibwapi.pdb</ProgramDatabaseFile> | ||||||
|       <GenerateMapFile>true</GenerateMapFile> |       <GenerateMapFile>true</GenerateMapFile> | ||||||
| @@ -98,10 +390,143 @@ | |||||||
|       <TargetMachine>MachineX64</TargetMachine> |       <TargetMachine>MachineX64</TargetMachine> | ||||||
|     </Link> |     </Link> | ||||||
|     <PreBuildEvent> |     <PreBuildEvent> | ||||||
|       <Command>cd ..\..\masmx64 |       <Command>cd ..\..\contrib\masmx64 | ||||||
| bld_ml64.bat</Command> | bld_ml64.bat</Command> | ||||||
|     </PreBuildEvent> |     </PreBuildEvent> | ||||||
|   </ItemDefinitionGroup> |   </ItemDefinitionGroup> | ||||||
|  |   <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Itanium'"> | ||||||
|  |     <Midl> | ||||||
|  |       <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions> | ||||||
|  |       <MkTypLibCompatible>true</MkTypLibCompatible> | ||||||
|  |       <SuppressStartupBanner>true</SuppressStartupBanner> | ||||||
|  |       <TargetEnvironment>Itanium</TargetEnvironment> | ||||||
|  |       <TypeLibraryName>$(OutDir)zlibvc.tlb</TypeLibraryName> | ||||||
|  |     </Midl> | ||||||
|  |     <ClCompile> | ||||||
|  |       <Optimization>Disabled</Optimization> | ||||||
|  |       <AdditionalIncludeDirectories>..\..\..;..\..\masmx86;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> | ||||||
|  |       <PreprocessorDefinitions>WIN32;_CRT_NONSTDC_NO_DEPRECATE;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_WARNINGS;ZLIB_WINAPI;WIN64;%(PreprocessorDefinitions)</PreprocessorDefinitions> | ||||||
|  |       <ExceptionHandling> | ||||||
|  |       </ExceptionHandling> | ||||||
|  |       <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary> | ||||||
|  |       <BufferSecurityCheck>false</BufferSecurityCheck> | ||||||
|  |       <PrecompiledHeaderOutputFile>$(IntDir)zlibvc.pch</PrecompiledHeaderOutputFile> | ||||||
|  |       <AssemblerListingLocation>$(IntDir)</AssemblerListingLocation> | ||||||
|  |       <ObjectFileName>$(IntDir)</ObjectFileName> | ||||||
|  |       <ProgramDataBaseFileName>$(OutDir)</ProgramDataBaseFileName> | ||||||
|  |       <BrowseInformation> | ||||||
|  |       </BrowseInformation> | ||||||
|  |       <WarningLevel>Level3</WarningLevel> | ||||||
|  |       <SuppressStartupBanner>true</SuppressStartupBanner> | ||||||
|  |       <DebugInformationFormat>ProgramDatabase</DebugInformationFormat> | ||||||
|  |     </ClCompile> | ||||||
|  |     <ResourceCompile> | ||||||
|  |       <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions> | ||||||
|  |       <Culture>0x040c</Culture> | ||||||
|  |     </ResourceCompile> | ||||||
|  |     <Link> | ||||||
|  |       <OutputFile>$(OutDir)zlibwapi.dll</OutputFile> | ||||||
|  |       <SuppressStartupBanner>true</SuppressStartupBanner> | ||||||
|  |       <ModuleDefinitionFile>.\zlibvc.def</ModuleDefinitionFile> | ||||||
|  |       <GenerateDebugInformation>true</GenerateDebugInformation> | ||||||
|  |       <ProgramDatabaseFile>$(OutDir)zlibwapi.pdb</ProgramDatabaseFile> | ||||||
|  |       <GenerateMapFile>true</GenerateMapFile> | ||||||
|  |       <MapFileName>$(OutDir)zlibwapi.map</MapFileName> | ||||||
|  |       <SubSystem>Windows</SubSystem> | ||||||
|  |       <ImportLibrary>$(OutDir)zlibwapi.lib</ImportLibrary> | ||||||
|  |       <TargetMachine>MachineIA64</TargetMachine> | ||||||
|  |     </Link> | ||||||
|  |   </ItemDefinitionGroup> | ||||||
|  |   <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='ReleaseWithoutAsm|x64'"> | ||||||
|  |     <Midl> | ||||||
|  |       <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions> | ||||||
|  |       <MkTypLibCompatible>true</MkTypLibCompatible> | ||||||
|  |       <SuppressStartupBanner>true</SuppressStartupBanner> | ||||||
|  |       <TargetEnvironment>X64</TargetEnvironment> | ||||||
|  |       <TypeLibraryName>$(OutDir)zlibvc.tlb</TypeLibraryName> | ||||||
|  |     </Midl> | ||||||
|  |     <ClCompile> | ||||||
|  |       <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion> | ||||||
|  |       <AdditionalIncludeDirectories>..\..\..;..\..\masmx86;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> | ||||||
|  |       <PreprocessorDefinitions>WIN32;_CRT_NONSTDC_NO_DEPRECATE;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_WARNINGS;ZLIB_WINAPI;WIN64;%(PreprocessorDefinitions)</PreprocessorDefinitions> | ||||||
|  |       <StringPooling>true</StringPooling> | ||||||
|  |       <ExceptionHandling> | ||||||
|  |       </ExceptionHandling> | ||||||
|  |       <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary> | ||||||
|  |       <BufferSecurityCheck>false</BufferSecurityCheck> | ||||||
|  |       <FunctionLevelLinking>true</FunctionLevelLinking> | ||||||
|  |       <PrecompiledHeaderOutputFile>$(IntDir)zlibvc.pch</PrecompiledHeaderOutputFile> | ||||||
|  |       <AssemblerOutput>All</AssemblerOutput> | ||||||
|  |       <AssemblerListingLocation>$(IntDir)</AssemblerListingLocation> | ||||||
|  |       <ObjectFileName>$(IntDir)</ObjectFileName> | ||||||
|  |       <ProgramDataBaseFileName>$(OutDir)</ProgramDataBaseFileName> | ||||||
|  |       <BrowseInformation> | ||||||
|  |       </BrowseInformation> | ||||||
|  |       <WarningLevel>Level3</WarningLevel> | ||||||
|  |       <SuppressStartupBanner>true</SuppressStartupBanner> | ||||||
|  |     </ClCompile> | ||||||
|  |     <ResourceCompile> | ||||||
|  |       <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions> | ||||||
|  |       <Culture>0x040c</Culture> | ||||||
|  |     </ResourceCompile> | ||||||
|  |     <Link> | ||||||
|  |       <OutputFile>$(OutDir)zlibwapi.dll</OutputFile> | ||||||
|  |       <SuppressStartupBanner>true</SuppressStartupBanner> | ||||||
|  |       <IgnoreAllDefaultLibraries>false</IgnoreAllDefaultLibraries> | ||||||
|  |       <ModuleDefinitionFile>.\zlibvc.def</ModuleDefinitionFile> | ||||||
|  |       <ProgramDatabaseFile>$(OutDir)zlibwapi.pdb</ProgramDatabaseFile> | ||||||
|  |       <GenerateMapFile>true</GenerateMapFile> | ||||||
|  |       <MapFileName>$(OutDir)zlibwapi.map</MapFileName> | ||||||
|  |       <SubSystem>Windows</SubSystem> | ||||||
|  |       <ImportLibrary>$(OutDir)zlibwapi.lib</ImportLibrary> | ||||||
|  |       <TargetMachine>MachineX64</TargetMachine> | ||||||
|  |     </Link> | ||||||
|  |   </ItemDefinitionGroup> | ||||||
|  |   <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='ReleaseWithoutAsm|Itanium'"> | ||||||
|  |     <Midl> | ||||||
|  |       <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions> | ||||||
|  |       <MkTypLibCompatible>true</MkTypLibCompatible> | ||||||
|  |       <SuppressStartupBanner>true</SuppressStartupBanner> | ||||||
|  |       <TargetEnvironment>Itanium</TargetEnvironment> | ||||||
|  |       <TypeLibraryName>$(OutDir)zlibvc.tlb</TypeLibraryName> | ||||||
|  |     </Midl> | ||||||
|  |     <ClCompile> | ||||||
|  |       <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion> | ||||||
|  |       <AdditionalIncludeDirectories>..\..\..;..\..\masmx86;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> | ||||||
|  |       <PreprocessorDefinitions>WIN32;_CRT_NONSTDC_NO_DEPRECATE;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_WARNINGS;ZLIB_WINAPI;WIN64;%(PreprocessorDefinitions)</PreprocessorDefinitions> | ||||||
|  |       <StringPooling>true</StringPooling> | ||||||
|  |       <ExceptionHandling> | ||||||
|  |       </ExceptionHandling> | ||||||
|  |       <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary> | ||||||
|  |       <BufferSecurityCheck>false</BufferSecurityCheck> | ||||||
|  |       <FunctionLevelLinking>true</FunctionLevelLinking> | ||||||
|  |       <PrecompiledHeaderOutputFile>$(IntDir)zlibvc.pch</PrecompiledHeaderOutputFile> | ||||||
|  |       <AssemblerOutput>All</AssemblerOutput> | ||||||
|  |       <AssemblerListingLocation>$(IntDir)</AssemblerListingLocation> | ||||||
|  |       <ObjectFileName>$(IntDir)</ObjectFileName> | ||||||
|  |       <ProgramDataBaseFileName>$(OutDir)</ProgramDataBaseFileName> | ||||||
|  |       <BrowseInformation> | ||||||
|  |       </BrowseInformation> | ||||||
|  |       <WarningLevel>Level3</WarningLevel> | ||||||
|  |       <SuppressStartupBanner>true</SuppressStartupBanner> | ||||||
|  |     </ClCompile> | ||||||
|  |     <ResourceCompile> | ||||||
|  |       <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions> | ||||||
|  |       <Culture>0x040c</Culture> | ||||||
|  |     </ResourceCompile> | ||||||
|  |     <Link> | ||||||
|  |       <OutputFile>$(OutDir)zlibwapi.dll</OutputFile> | ||||||
|  |       <SuppressStartupBanner>true</SuppressStartupBanner> | ||||||
|  |       <IgnoreAllDefaultLibraries>false</IgnoreAllDefaultLibraries> | ||||||
|  |       <ModuleDefinitionFile>.\zlibvc.def</ModuleDefinitionFile> | ||||||
|  |       <ProgramDatabaseFile>$(OutDir)zlibwapi.pdb</ProgramDatabaseFile> | ||||||
|  |       <GenerateMapFile>true</GenerateMapFile> | ||||||
|  |       <MapFileName>$(OutDir)zlibwapi.map</MapFileName> | ||||||
|  |       <SubSystem>Windows</SubSystem> | ||||||
|  |       <ImportLibrary>$(OutDir)zlibwapi.lib</ImportLibrary> | ||||||
|  |       <TargetMachine>MachineIA64</TargetMachine> | ||||||
|  |     </Link> | ||||||
|  |   </ItemDefinitionGroup> | ||||||
|   <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'"> |   <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'"> | ||||||
|     <Midl> |     <Midl> | ||||||
|       <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions> |       <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions> | ||||||
| @@ -139,20 +564,64 @@ bld_ml64.bat</Command> | |||||||
|       <OutputFile>$(OutDir)zlibwapi.dll</OutputFile> |       <OutputFile>$(OutDir)zlibwapi.dll</OutputFile> | ||||||
|       <SuppressStartupBanner>true</SuppressStartupBanner> |       <SuppressStartupBanner>true</SuppressStartupBanner> | ||||||
|       <IgnoreAllDefaultLibraries>false</IgnoreAllDefaultLibraries> |       <IgnoreAllDefaultLibraries>false</IgnoreAllDefaultLibraries> | ||||||
|       <ModuleDefinitionFile>.\zlibvc11.def</ModuleDefinitionFile> |       <ModuleDefinitionFile>.\zlibvc.def</ModuleDefinitionFile> | ||||||
|       <ProgramDatabaseFile>$(OutDir)zlibwapi.pdb</ProgramDatabaseFile> |       <ProgramDatabaseFile>$(OutDir)zlibwapi.pdb</ProgramDatabaseFile> | ||||||
|       <GenerateMapFile>true</GenerateMapFile> |       <GenerateMapFile>true</GenerateMapFile> | ||||||
|       <MapFileName>$(OutDir)zlibwapi.map</MapFileName> |       <MapFileName>$(OutDir)zlibwapi.map</MapFileName> | ||||||
|       <SubSystem>Windows</SubSystem> |       <SubSystem>Windows</SubSystem> | ||||||
|       <ImportLibrary>$(OutDir)zlibwapi.lib</ImportLibrary> |       <ImportLibrary>$(OutDir)zlibwapi.lib</ImportLibrary> | ||||||
|       <TargetMachine>MachineX64</TargetMachine> |       <TargetMachine>MachineX64</TargetMachine> | ||||||
|       <GenerateDebugInformation>true</GenerateDebugInformation> |  | ||||||
|     </Link> |     </Link> | ||||||
|     <PreBuildEvent> |     <PreBuildEvent> | ||||||
|       <Command>cd ..\..\masmx64 |       <Command>cd ..\..\masmx64 | ||||||
| bld_ml64.bat</Command> | bld_ml64.bat</Command> | ||||||
|     </PreBuildEvent> |     </PreBuildEvent> | ||||||
|   </ItemDefinitionGroup> |   </ItemDefinitionGroup> | ||||||
|  |   <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Itanium'"> | ||||||
|  |     <Midl> | ||||||
|  |       <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions> | ||||||
|  |       <MkTypLibCompatible>true</MkTypLibCompatible> | ||||||
|  |       <SuppressStartupBanner>true</SuppressStartupBanner> | ||||||
|  |       <TargetEnvironment>Itanium</TargetEnvironment> | ||||||
|  |       <TypeLibraryName>$(OutDir)zlibvc.tlb</TypeLibraryName> | ||||||
|  |     </Midl> | ||||||
|  |     <ClCompile> | ||||||
|  |       <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion> | ||||||
|  |       <AdditionalIncludeDirectories>..\..\..;..\..\masmx86;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> | ||||||
|  |       <PreprocessorDefinitions>_CRT_NONSTDC_NO_DEPRECATE;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_WARNINGS;ZLIB_WINAPI;WIN64;%(PreprocessorDefinitions)</PreprocessorDefinitions> | ||||||
|  |       <StringPooling>true</StringPooling> | ||||||
|  |       <ExceptionHandling> | ||||||
|  |       </ExceptionHandling> | ||||||
|  |       <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary> | ||||||
|  |       <BufferSecurityCheck>false</BufferSecurityCheck> | ||||||
|  |       <FunctionLevelLinking>true</FunctionLevelLinking> | ||||||
|  |       <PrecompiledHeaderOutputFile>$(IntDir)zlibvc.pch</PrecompiledHeaderOutputFile> | ||||||
|  |       <AssemblerOutput>All</AssemblerOutput> | ||||||
|  |       <AssemblerListingLocation>$(IntDir)</AssemblerListingLocation> | ||||||
|  |       <ObjectFileName>$(IntDir)</ObjectFileName> | ||||||
|  |       <ProgramDataBaseFileName>$(OutDir)</ProgramDataBaseFileName> | ||||||
|  |       <BrowseInformation> | ||||||
|  |       </BrowseInformation> | ||||||
|  |       <WarningLevel>Level3</WarningLevel> | ||||||
|  |       <SuppressStartupBanner>true</SuppressStartupBanner> | ||||||
|  |     </ClCompile> | ||||||
|  |     <ResourceCompile> | ||||||
|  |       <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions> | ||||||
|  |       <Culture>0x040c</Culture> | ||||||
|  |     </ResourceCompile> | ||||||
|  |     <Link> | ||||||
|  |       <OutputFile>$(OutDir)zlibwapi.dll</OutputFile> | ||||||
|  |       <SuppressStartupBanner>true</SuppressStartupBanner> | ||||||
|  |       <IgnoreAllDefaultLibraries>false</IgnoreAllDefaultLibraries> | ||||||
|  |       <ModuleDefinitionFile>.\zlibvc.def</ModuleDefinitionFile> | ||||||
|  |       <ProgramDatabaseFile>$(OutDir)zlibwapi.pdb</ProgramDatabaseFile> | ||||||
|  |       <GenerateMapFile>true</GenerateMapFile> | ||||||
|  |       <MapFileName>$(OutDir)zlibwapi.map</MapFileName> | ||||||
|  |       <SubSystem>Windows</SubSystem> | ||||||
|  |       <ImportLibrary>$(OutDir)zlibwapi.lib</ImportLibrary> | ||||||
|  |       <TargetMachine>MachineIA64</TargetMachine> | ||||||
|  |     </Link> | ||||||
|  |   </ItemDefinitionGroup> | ||||||
|   <ItemGroup> |   <ItemGroup> | ||||||
|     <ClCompile Include="..\..\..\adler32.c" /> |     <ClCompile Include="..\..\..\adler32.c" /> | ||||||
|     <ClCompile Include="..\..\..\compress.c" /> |     <ClCompile Include="..\..\..\compress.c" /> | ||||||
| @@ -163,7 +632,14 @@ bld_ml64.bat</Command> | |||||||
|     <ClCompile Include="..\..\..\gzread.c" /> |     <ClCompile Include="..\..\..\gzread.c" /> | ||||||
|     <ClCompile Include="..\..\..\gzwrite.c" /> |     <ClCompile Include="..\..\..\gzwrite.c" /> | ||||||
|     <ClCompile Include="..\..\..\infback.c" /> |     <ClCompile Include="..\..\..\infback.c" /> | ||||||
|     <ClCompile Include="..\..\masmx64\inffas8664.c" /> |     <ClCompile Include="..\..\masmx64\inffas8664.c"> | ||||||
|  |       <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|Itanium'">true</ExcludedFromBuild> | ||||||
|  |       <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">true</ExcludedFromBuild> | ||||||
|  |       <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='ReleaseWithoutAsm|Itanium'">true</ExcludedFromBuild> | ||||||
|  |       <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='ReleaseWithoutAsm|Win32'">true</ExcludedFromBuild> | ||||||
|  |       <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|Itanium'">true</ExcludedFromBuild> | ||||||
|  |       <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">true</ExcludedFromBuild> | ||||||
|  |     </ClCompile> | ||||||
|     <ClCompile Include="..\..\..\inffast.c" /> |     <ClCompile Include="..\..\..\inffast.c" /> | ||||||
|     <ClCompile Include="..\..\..\inflate.c" /> |     <ClCompile Include="..\..\..\inflate.c" /> | ||||||
|     <ClCompile Include="..\..\..\inftrees.c" /> |     <ClCompile Include="..\..\..\inftrees.c" /> | ||||||
| @@ -172,10 +648,18 @@ bld_ml64.bat</Command> | |||||||
|     <ClCompile Include="..\..\..\trees.c" /> |     <ClCompile Include="..\..\..\trees.c" /> | ||||||
|     <ClCompile Include="..\..\..\uncompr.c" /> |     <ClCompile Include="..\..\..\uncompr.c" /> | ||||||
|     <ClCompile Include="..\..\minizip\unzip.c"> |     <ClCompile Include="..\..\minizip\unzip.c"> | ||||||
|  |       <AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Release|Itanium'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> | ||||||
|  |       <PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Release|Itanium'">ZLIB_INTERNAL;%(PreprocessorDefinitions)</PreprocessorDefinitions> | ||||||
|  |       <AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> | ||||||
|  |       <PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">ZLIB_INTERNAL;%(PreprocessorDefinitions)</PreprocessorDefinitions> | ||||||
|       <AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Release|x64'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> |       <AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Release|x64'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> | ||||||
|       <PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Release|x64'">ZLIB_INTERNAL;%(PreprocessorDefinitions)</PreprocessorDefinitions> |       <PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Release|x64'">ZLIB_INTERNAL;%(PreprocessorDefinitions)</PreprocessorDefinitions> | ||||||
|     </ClCompile> |     </ClCompile> | ||||||
|     <ClCompile Include="..\..\minizip\zip.c"> |     <ClCompile Include="..\..\minizip\zip.c"> | ||||||
|  |       <AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Release|Itanium'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> | ||||||
|  |       <PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Release|Itanium'">ZLIB_INTERNAL;%(PreprocessorDefinitions)</PreprocessorDefinitions> | ||||||
|  |       <AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> | ||||||
|  |       <PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">ZLIB_INTERNAL;%(PreprocessorDefinitions)</PreprocessorDefinitions> | ||||||
|       <AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Release|x64'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> |       <AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Release|x64'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> | ||||||
|       <PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Release|x64'">ZLIB_INTERNAL;%(PreprocessorDefinitions)</PreprocessorDefinitions> |       <PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Release|x64'">ZLIB_INTERNAL;%(PreprocessorDefinitions)</PreprocessorDefinitions> | ||||||
|     </ClCompile> |     </ClCompile> | ||||||
|   | |||||||
| @@ -1,118 +0,0 @@ | |||||||
| <?xml version="1.0" encoding="utf-8"?> |  | ||||||
| <Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> |  | ||||||
|   <ItemGroup> |  | ||||||
|     <Filter Include="Source Files"> |  | ||||||
|       <UniqueIdentifier>{07934a85-8b61-443d-a0ee-b2eedb74f3cd}</UniqueIdentifier> |  | ||||||
|       <Extensions>cpp;c;cxx;rc;def;r;odl;hpj;bat;for;f90</Extensions> |  | ||||||
|     </Filter> |  | ||||||
|     <Filter Include="Header Files"> |  | ||||||
|       <UniqueIdentifier>{1d99675b-433d-4a21-9e50-ed4ab8b19762}</UniqueIdentifier> |  | ||||||
|       <Extensions>h;hpp;hxx;hm;inl;fi;fd</Extensions> |  | ||||||
|     </Filter> |  | ||||||
|     <Filter Include="Resource Files"> |  | ||||||
|       <UniqueIdentifier>{431c0958-fa71-44d0-9084-2d19d100c0cc}</UniqueIdentifier> |  | ||||||
|       <Extensions>ico;cur;bmp;dlg;rc2;rct;bin;cnt;rtf;gif;jpg;jpeg;jpe</Extensions> |  | ||||||
|     </Filter> |  | ||||||
|   </ItemGroup> |  | ||||||
|   <ItemGroup> |  | ||||||
|     <ClCompile Include="..\..\..\adler32.c"> |  | ||||||
|       <Filter>Source Files</Filter> |  | ||||||
|     </ClCompile> |  | ||||||
|     <ClCompile Include="..\..\..\compress.c"> |  | ||||||
|       <Filter>Source Files</Filter> |  | ||||||
|     </ClCompile> |  | ||||||
|     <ClCompile Include="..\..\..\crc32.c"> |  | ||||||
|       <Filter>Source Files</Filter> |  | ||||||
|     </ClCompile> |  | ||||||
|     <ClCompile Include="..\..\..\deflate.c"> |  | ||||||
|       <Filter>Source Files</Filter> |  | ||||||
|     </ClCompile> |  | ||||||
|     <ClCompile Include="..\..\..\gzclose.c"> |  | ||||||
|       <Filter>Source Files</Filter> |  | ||||||
|     </ClCompile> |  | ||||||
|     <ClCompile Include="..\..\..\gzlib.c"> |  | ||||||
|       <Filter>Source Files</Filter> |  | ||||||
|     </ClCompile> |  | ||||||
|     <ClCompile Include="..\..\..\gzread.c"> |  | ||||||
|       <Filter>Source Files</Filter> |  | ||||||
|     </ClCompile> |  | ||||||
|     <ClCompile Include="..\..\..\gzwrite.c"> |  | ||||||
|       <Filter>Source Files</Filter> |  | ||||||
|     </ClCompile> |  | ||||||
|     <ClCompile Include="..\..\..\infback.c"> |  | ||||||
|       <Filter>Source Files</Filter> |  | ||||||
|     </ClCompile> |  | ||||||
|     <ClCompile Include="..\..\masmx64\inffas8664.c"> |  | ||||||
|       <Filter>Source Files</Filter> |  | ||||||
|     </ClCompile> |  | ||||||
|     <ClCompile Include="..\..\..\inffast.c"> |  | ||||||
|       <Filter>Source Files</Filter> |  | ||||||
|     </ClCompile> |  | ||||||
|     <ClCompile Include="..\..\..\inflate.c"> |  | ||||||
|       <Filter>Source Files</Filter> |  | ||||||
|     </ClCompile> |  | ||||||
|     <ClCompile Include="..\..\..\inftrees.c"> |  | ||||||
|       <Filter>Source Files</Filter> |  | ||||||
|     </ClCompile> |  | ||||||
|     <ClCompile Include="..\..\minizip\ioapi.c"> |  | ||||||
|       <Filter>Source Files</Filter> |  | ||||||
|     </ClCompile> |  | ||||||
|     <ClCompile Include="..\..\minizip\iowin32.c"> |  | ||||||
|       <Filter>Source Files</Filter> |  | ||||||
|     </ClCompile> |  | ||||||
|     <ClCompile Include="..\..\..\trees.c"> |  | ||||||
|       <Filter>Source Files</Filter> |  | ||||||
|     </ClCompile> |  | ||||||
|     <ClCompile Include="..\..\..\uncompr.c"> |  | ||||||
|       <Filter>Source Files</Filter> |  | ||||||
|     </ClCompile> |  | ||||||
|     <ClCompile Include="..\..\minizip\unzip.c"> |  | ||||||
|       <Filter>Source Files</Filter> |  | ||||||
|     </ClCompile> |  | ||||||
|     <ClCompile Include="..\..\minizip\zip.c"> |  | ||||||
|       <Filter>Source Files</Filter> |  | ||||||
|     </ClCompile> |  | ||||||
|     <ClCompile Include="..\..\..\zutil.c"> |  | ||||||
|       <Filter>Source Files</Filter> |  | ||||||
|     </ClCompile> |  | ||||||
|   </ItemGroup> |  | ||||||
|   <ItemGroup> |  | ||||||
|     <ResourceCompile Include="zlib.rc"> |  | ||||||
|       <Filter>Source Files</Filter> |  | ||||||
|     </ResourceCompile> |  | ||||||
|   </ItemGroup> |  | ||||||
|   <ItemGroup> |  | ||||||
|     <None Include="zlibvc.def"> |  | ||||||
|       <Filter>Source Files</Filter> |  | ||||||
|     </None> |  | ||||||
|   </ItemGroup> |  | ||||||
|   <ItemGroup> |  | ||||||
|     <ClInclude Include="..\..\..\deflate.h"> |  | ||||||
|       <Filter>Header Files</Filter> |  | ||||||
|     </ClInclude> |  | ||||||
|     <ClInclude Include="..\..\..\infblock.h"> |  | ||||||
|       <Filter>Header Files</Filter> |  | ||||||
|     </ClInclude> |  | ||||||
|     <ClInclude Include="..\..\..\infcodes.h"> |  | ||||||
|       <Filter>Header Files</Filter> |  | ||||||
|     </ClInclude> |  | ||||||
|     <ClInclude Include="..\..\..\inffast.h"> |  | ||||||
|       <Filter>Header Files</Filter> |  | ||||||
|     </ClInclude> |  | ||||||
|     <ClInclude Include="..\..\..\inftrees.h"> |  | ||||||
|       <Filter>Header Files</Filter> |  | ||||||
|     </ClInclude> |  | ||||||
|     <ClInclude Include="..\..\..\infutil.h"> |  | ||||||
|       <Filter>Header Files</Filter> |  | ||||||
|     </ClInclude> |  | ||||||
|     <ClInclude Include="..\..\..\zconf.h"> |  | ||||||
|       <Filter>Header Files</Filter> |  | ||||||
|     </ClInclude> |  | ||||||
|     <ClInclude Include="..\..\..\zlib.h"> |  | ||||||
|       <Filter>Header Files</Filter> |  | ||||||
|     </ClInclude> |  | ||||||
|     <ClInclude Include="..\..\..\zutil.h"> |  | ||||||
|       <Filter>Header Files</Filter> |  | ||||||
|     </ClInclude> |  | ||||||
|   </ItemGroup> |  | ||||||
| </Project> |  | ||||||
| @@ -1,10 +0,0 @@ | |||||||
| "" |  | ||||||
| { |  | ||||||
| "FILE_VERSION" = "9237" |  | ||||||
| "ENLISTMENT_CHOICE" = "NEVER" |  | ||||||
| "PROJECT_FILE_RELATIVE_PATH" = "" |  | ||||||
| "NUMBER_OF_EXCLUDED_FILES" = "0" |  | ||||||
| "ORIGINAL_PROJECT_FILE_PATH" = "" |  | ||||||
| "NUMBER_OF_NESTED_PROJECTS" = "0" |  | ||||||
| "SOURCE_CONTROL_SETTINGS_PROVIDER" = "PROJECT" |  | ||||||
| } |  | ||||||
| @@ -1,143 +0,0 @@ | |||||||
| LIBRARY |  | ||||||
| ; zlib data compression and ZIP file I/O library |  | ||||||
|  |  | ||||||
| VERSION		1.27 |  | ||||||
|  |  | ||||||
| EXPORTS |  | ||||||
|         adler32                                  @1 |  | ||||||
|         compress                                 @2 |  | ||||||
|         crc32                                    @3 |  | ||||||
|         deflate                                  @4 |  | ||||||
|         deflateCopy                              @5 |  | ||||||
|         deflateEnd                               @6 |  | ||||||
|         deflateInit2_                            @7 |  | ||||||
|         deflateInit_                             @8 |  | ||||||
|         deflateParams                            @9 |  | ||||||
|         deflateReset                             @10 |  | ||||||
|         deflateSetDictionary                     @11 |  | ||||||
|         gzclose                                  @12 |  | ||||||
|         gzdopen                                  @13 |  | ||||||
|         gzerror                                  @14 |  | ||||||
|         gzflush                                  @15 |  | ||||||
|         gzopen                                   @16 |  | ||||||
|         gzread                                   @17 |  | ||||||
|         gzwrite                                  @18 |  | ||||||
|         inflate                                  @19 |  | ||||||
|         inflateEnd                               @20 |  | ||||||
|         inflateInit2_                            @21 |  | ||||||
|         inflateInit_                             @22 |  | ||||||
|         inflateReset                             @23 |  | ||||||
|         inflateSetDictionary                     @24 |  | ||||||
|         inflateSync                              @25 |  | ||||||
|         uncompress                               @26 |  | ||||||
|         zlibVersion                              @27 |  | ||||||
|         gzprintf                                 @28 |  | ||||||
|         gzputc                                   @29 |  | ||||||
|         gzgetc                                   @30 |  | ||||||
|         gzseek                                   @31 |  | ||||||
|         gzrewind                                 @32 |  | ||||||
|         gztell                                   @33 |  | ||||||
|         gzeof                                    @34 |  | ||||||
|         gzsetparams                              @35 |  | ||||||
|         zError                                   @36 |  | ||||||
|         inflateSyncPoint                         @37 |  | ||||||
|         get_crc_table                            @38 |  | ||||||
|         compress2                                @39 |  | ||||||
|         gzputs                                   @40 |  | ||||||
|         gzgets                                   @41 |  | ||||||
|         inflateCopy                              @42 |  | ||||||
|         inflateBackInit_                         @43 |  | ||||||
|         inflateBack                              @44 |  | ||||||
|         inflateBackEnd                           @45 |  | ||||||
|         compressBound                            @46 |  | ||||||
|         deflateBound                             @47 |  | ||||||
|         gzclearerr                               @48 |  | ||||||
|         gzungetc                                 @49 |  | ||||||
|         zlibCompileFlags                         @50 |  | ||||||
|         deflatePrime                             @51 |  | ||||||
|         deflatePending                           @52 |  | ||||||
|  |  | ||||||
|         unzOpen                                  @61 |  | ||||||
|         unzClose                                 @62 |  | ||||||
|         unzGetGlobalInfo                         @63 |  | ||||||
|         unzGetCurrentFileInfo                    @64 |  | ||||||
|         unzGoToFirstFile                         @65 |  | ||||||
|         unzGoToNextFile                          @66 |  | ||||||
|         unzOpenCurrentFile                       @67 |  | ||||||
|         unzReadCurrentFile                       @68 |  | ||||||
|         unzOpenCurrentFile3                      @69 |  | ||||||
|         unztell                                  @70 |  | ||||||
|         unzeof                                   @71 |  | ||||||
|         unzCloseCurrentFile                      @72 |  | ||||||
|         unzGetGlobalComment                      @73 |  | ||||||
|         unzStringFileNameCompare                 @74 |  | ||||||
|         unzLocateFile                            @75 |  | ||||||
|         unzGetLocalExtrafield                    @76 |  | ||||||
|         unzOpen2                                 @77 |  | ||||||
|         unzOpenCurrentFile2                      @78 |  | ||||||
|         unzOpenCurrentFilePassword               @79 |  | ||||||
|  |  | ||||||
|         zipOpen                                  @80 |  | ||||||
|         zipOpenNewFileInZip                      @81 |  | ||||||
|         zipWriteInFileInZip                      @82 |  | ||||||
|         zipCloseFileInZip                        @83 |  | ||||||
|         zipClose                                 @84 |  | ||||||
|         zipOpenNewFileInZip2                     @86 |  | ||||||
|         zipCloseFileInZipRaw                     @87 |  | ||||||
|         zipOpen2                                 @88 |  | ||||||
|         zipOpenNewFileInZip3                     @89 |  | ||||||
|  |  | ||||||
|         unzGetFilePos                            @100 |  | ||||||
|         unzGoToFilePos                           @101 |  | ||||||
|  |  | ||||||
|         fill_win32_filefunc                      @110 |  | ||||||
|  |  | ||||||
| ; zlibwapi v1.2.4 added: |  | ||||||
|         fill_win32_filefunc64                   @111 |  | ||||||
|         fill_win32_filefunc64A                  @112 |  | ||||||
|         fill_win32_filefunc64W                  @113 |  | ||||||
|  |  | ||||||
|         unzOpen64                               @120 |  | ||||||
|         unzOpen2_64                             @121 |  | ||||||
|         unzGetGlobalInfo64                      @122 |  | ||||||
|         unzGetCurrentFileInfo64                 @124 |  | ||||||
|         unzGetCurrentFileZStreamPos64           @125 |  | ||||||
|         unztell64                               @126 |  | ||||||
|         unzGetFilePos64                         @127 |  | ||||||
|         unzGoToFilePos64                        @128 |  | ||||||
|  |  | ||||||
|         zipOpen64                               @130 |  | ||||||
|         zipOpen2_64                             @131 |  | ||||||
|         zipOpenNewFileInZip64                   @132 |  | ||||||
|         zipOpenNewFileInZip2_64                 @133 |  | ||||||
|         zipOpenNewFileInZip3_64                 @134 |  | ||||||
|         zipOpenNewFileInZip4_64                 @135 |  | ||||||
|         zipCloseFileInZipRaw64                  @136 |  | ||||||
|  |  | ||||||
| ; zlib1 v1.2.4 added: |  | ||||||
|         adler32_combine                         @140 |  | ||||||
|         crc32_combine                           @142 |  | ||||||
|         deflateSetHeader                        @144 |  | ||||||
|         deflateTune                             @145 |  | ||||||
|         gzbuffer                                @146 |  | ||||||
|         gzclose_r                               @147 |  | ||||||
|         gzclose_w                               @148 |  | ||||||
|         gzdirect                                @149 |  | ||||||
|         gzoffset                                @150 |  | ||||||
|         inflateGetHeader                        @156 |  | ||||||
|         inflateMark                             @157 |  | ||||||
|         inflatePrime                            @158 |  | ||||||
|         inflateReset2                           @159 |  | ||||||
|         inflateUndermine                        @160 |  | ||||||
|  |  | ||||||
| ; zlib1 v1.2.6 added: |  | ||||||
|         gzgetc_                                 @161 |  | ||||||
|         inflateResetKeep                        @163 |  | ||||||
|         deflateResetKeep                        @164 |  | ||||||
|  |  | ||||||
| ; zlib1 v1.2.7 added: |  | ||||||
|         gzopen_w                                @165 |  | ||||||
|  |  | ||||||
| ; zlib1 v1.2.8 added: |  | ||||||
|         inflateGetDictionary                    @166 |  | ||||||
|         gzvprintf                               @167 |  | ||||||
| @@ -1,32 +0,0 @@ | |||||||
| #include <windows.h> |  | ||||||
|  |  | ||||||
| #define IDR_VERSION1  1 |  | ||||||
| IDR_VERSION1	VERSIONINFO	MOVEABLE IMPURE LOADONCALL DISCARDABLE |  | ||||||
|   FILEVERSION	 1.2.7,0 |  | ||||||
|   PRODUCTVERSION 1.2.7,0 |  | ||||||
|   FILEFLAGSMASK	VS_FFI_FILEFLAGSMASK |  | ||||||
|   FILEFLAGS	0 |  | ||||||
|   FILEOS	VOS_DOS_WINDOWS32 |  | ||||||
|   FILETYPE	VFT_DLL |  | ||||||
|   FILESUBTYPE	0	// not used |  | ||||||
| BEGIN |  | ||||||
|   BLOCK "StringFileInfo" |  | ||||||
|   BEGIN |  | ||||||
|     BLOCK "040904E4" |  | ||||||
|     //language ID = U.S. English, char set = Windows, Multilingual |  | ||||||
|  |  | ||||||
|     BEGIN |  | ||||||
|       VALUE "FileDescription", "zlib data compression and ZIP file I/O library\0" |  | ||||||
|       VALUE "FileVersion",	"1.2.7\0" |  | ||||||
|       VALUE "InternalName",	"zlib\0" |  | ||||||
|       VALUE "OriginalFilename",	"zlib.dll\0" |  | ||||||
|       VALUE "ProductName",	"ZLib.DLL\0" |  | ||||||
|       VALUE "Comments","DLL support by Alessandro Iacopetti & Gilles Vollant\0" |  | ||||||
|       VALUE "LegalCopyright", "(C) 1995-2012 Jean-loup Gailly & Mark Adler\0" |  | ||||||
|     END |  | ||||||
|   END |  | ||||||
|   BLOCK "VarFileInfo" |  | ||||||
|   BEGIN |  | ||||||
|     VALUE "Translation", 0x0409, 1252 |  | ||||||
|   END |  | ||||||
| END |  | ||||||
| @@ -1,117 +0,0 @@ | |||||||
|  |  | ||||||
| Microsoft Visual Studio Solution File, Format Version 12.00 |  | ||||||
| # Visual Studio 2012 |  | ||||||
| Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "zlibvc", "zlibvc.vcxproj", "{8FD826F8-3739-44E6-8CC8-997122E53B8D}" |  | ||||||
| EndProject |  | ||||||
| Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "zlibstat", "zlibstat.vcxproj", "{745DEC58-EBB3-47A9-A9B8-4C6627C01BF8}" |  | ||||||
| EndProject |  | ||||||
| Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "testzlib", "testzlib.vcxproj", "{AA6666AA-E09F-4135-9C0C-4FE50C3C654B}" |  | ||||||
| EndProject |  | ||||||
| Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "testzlibdll", "testzlibdll.vcxproj", "{C52F9E7B-498A-42BE-8DB4-85A15694366A}" |  | ||||||
| EndProject |  | ||||||
| Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "minizip", "minizip.vcxproj", "{48CDD9DC-E09F-4135-9C0C-4FE50C3C654B}" |  | ||||||
| EndProject |  | ||||||
| Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "miniunz", "miniunz.vcxproj", "{C52F9E7B-498A-42BE-8DB4-85A15694382A}" |  | ||||||
| EndProject |  | ||||||
| Global |  | ||||||
| 	GlobalSection(SolutionConfigurationPlatforms) = preSolution |  | ||||||
| 		Debug|Itanium = Debug|Itanium |  | ||||||
| 		Debug|Win32 = Debug|Win32 |  | ||||||
| 		Debug|x64 = Debug|x64 |  | ||||||
| 		Release|Itanium = Release|Itanium |  | ||||||
| 		Release|Win32 = Release|Win32 |  | ||||||
| 		Release|x64 = Release|x64 |  | ||||||
| 		ReleaseWithoutAsm|Itanium = ReleaseWithoutAsm|Itanium |  | ||||||
| 		ReleaseWithoutAsm|Win32 = ReleaseWithoutAsm|Win32 |  | ||||||
| 		ReleaseWithoutAsm|x64 = ReleaseWithoutAsm|x64 |  | ||||||
| 	EndGlobalSection |  | ||||||
| 	GlobalSection(ProjectConfigurationPlatforms) = postSolution |  | ||||||
| 		{8FD826F8-3739-44E6-8CC8-997122E53B8D}.Debug|Itanium.ActiveCfg = Debug|Win32 |  | ||||||
| 		{8FD826F8-3739-44E6-8CC8-997122E53B8D}.Debug|Win32.ActiveCfg = Debug|Win32 |  | ||||||
| 		{8FD826F8-3739-44E6-8CC8-997122E53B8D}.Debug|Win32.Build.0 = Debug|Win32 |  | ||||||
| 		{8FD826F8-3739-44E6-8CC8-997122E53B8D}.Debug|x64.ActiveCfg = Debug|x64 |  | ||||||
| 		{8FD826F8-3739-44E6-8CC8-997122E53B8D}.Debug|x64.Build.0 = Debug|x64 |  | ||||||
| 		{8FD826F8-3739-44E6-8CC8-997122E53B8D}.Release|Itanium.ActiveCfg = Release|Win32 |  | ||||||
| 		{8FD826F8-3739-44E6-8CC8-997122E53B8D}.Release|Win32.ActiveCfg = Release|Win32 |  | ||||||
| 		{8FD826F8-3739-44E6-8CC8-997122E53B8D}.Release|Win32.Build.0 = Release|Win32 |  | ||||||
| 		{8FD826F8-3739-44E6-8CC8-997122E53B8D}.Release|x64.ActiveCfg = Release|x64 |  | ||||||
| 		{8FD826F8-3739-44E6-8CC8-997122E53B8D}.Release|x64.Build.0 = Release|x64 |  | ||||||
| 		{8FD826F8-3739-44E6-8CC8-997122E53B8D}.ReleaseWithoutAsm|Itanium.ActiveCfg = ReleaseWithoutAsm|Win32 |  | ||||||
| 		{8FD826F8-3739-44E6-8CC8-997122E53B8D}.ReleaseWithoutAsm|Win32.ActiveCfg = ReleaseWithoutAsm|Win32 |  | ||||||
| 		{8FD826F8-3739-44E6-8CC8-997122E53B8D}.ReleaseWithoutAsm|Win32.Build.0 = ReleaseWithoutAsm|Win32 |  | ||||||
| 		{8FD826F8-3739-44E6-8CC8-997122E53B8D}.ReleaseWithoutAsm|x64.ActiveCfg = ReleaseWithoutAsm|x64 |  | ||||||
| 		{8FD826F8-3739-44E6-8CC8-997122E53B8D}.ReleaseWithoutAsm|x64.Build.0 = ReleaseWithoutAsm|x64 |  | ||||||
| 		{745DEC58-EBB3-47A9-A9B8-4C6627C01BF8}.Debug|Itanium.ActiveCfg = Debug|Win32 |  | ||||||
| 		{745DEC58-EBB3-47A9-A9B8-4C6627C01BF8}.Debug|Win32.ActiveCfg = Debug|Win32 |  | ||||||
| 		{745DEC58-EBB3-47A9-A9B8-4C6627C01BF8}.Debug|Win32.Build.0 = Debug|Win32 |  | ||||||
| 		{745DEC58-EBB3-47A9-A9B8-4C6627C01BF8}.Debug|x64.ActiveCfg = Debug|x64 |  | ||||||
| 		{745DEC58-EBB3-47A9-A9B8-4C6627C01BF8}.Debug|x64.Build.0 = Debug|x64 |  | ||||||
| 		{745DEC58-EBB3-47A9-A9B8-4C6627C01BF8}.Release|Itanium.ActiveCfg = Release|Win32 |  | ||||||
| 		{745DEC58-EBB3-47A9-A9B8-4C6627C01BF8}.Release|Win32.ActiveCfg = Release|Win32 |  | ||||||
| 		{745DEC58-EBB3-47A9-A9B8-4C6627C01BF8}.Release|Win32.Build.0 = Release|Win32 |  | ||||||
| 		{745DEC58-EBB3-47A9-A9B8-4C6627C01BF8}.Release|x64.ActiveCfg = Release|x64 |  | ||||||
| 		{745DEC58-EBB3-47A9-A9B8-4C6627C01BF8}.Release|x64.Build.0 = Release|x64 |  | ||||||
| 		{745DEC58-EBB3-47A9-A9B8-4C6627C01BF8}.ReleaseWithoutAsm|Itanium.ActiveCfg = ReleaseWithoutAsm|Win32 |  | ||||||
| 		{745DEC58-EBB3-47A9-A9B8-4C6627C01BF8}.ReleaseWithoutAsm|Win32.ActiveCfg = ReleaseWithoutAsm|Win32 |  | ||||||
| 		{745DEC58-EBB3-47A9-A9B8-4C6627C01BF8}.ReleaseWithoutAsm|Win32.Build.0 = ReleaseWithoutAsm|Win32 |  | ||||||
| 		{745DEC58-EBB3-47A9-A9B8-4C6627C01BF8}.ReleaseWithoutAsm|x64.ActiveCfg = ReleaseWithoutAsm|x64 |  | ||||||
| 		{745DEC58-EBB3-47A9-A9B8-4C6627C01BF8}.ReleaseWithoutAsm|x64.Build.0 = ReleaseWithoutAsm|x64 |  | ||||||
| 		{AA6666AA-E09F-4135-9C0C-4FE50C3C654B}.Debug|Itanium.ActiveCfg = Debug|Win32 |  | ||||||
| 		{AA6666AA-E09F-4135-9C0C-4FE50C3C654B}.Debug|Win32.ActiveCfg = Debug|Win32 |  | ||||||
| 		{AA6666AA-E09F-4135-9C0C-4FE50C3C654B}.Debug|Win32.Build.0 = Debug|Win32 |  | ||||||
| 		{AA6666AA-E09F-4135-9C0C-4FE50C3C654B}.Debug|x64.ActiveCfg = Debug|x64 |  | ||||||
| 		{AA6666AA-E09F-4135-9C0C-4FE50C3C654B}.Debug|x64.Build.0 = Debug|x64 |  | ||||||
| 		{AA6666AA-E09F-4135-9C0C-4FE50C3C654B}.Release|Itanium.ActiveCfg = Release|Win32 |  | ||||||
| 		{AA6666AA-E09F-4135-9C0C-4FE50C3C654B}.Release|Win32.ActiveCfg = Release|Win32 |  | ||||||
| 		{AA6666AA-E09F-4135-9C0C-4FE50C3C654B}.Release|Win32.Build.0 = Release|Win32 |  | ||||||
| 		{AA6666AA-E09F-4135-9C0C-4FE50C3C654B}.Release|x64.ActiveCfg = Release|x64 |  | ||||||
| 		{AA6666AA-E09F-4135-9C0C-4FE50C3C654B}.Release|x64.Build.0 = Release|x64 |  | ||||||
| 		{AA6666AA-E09F-4135-9C0C-4FE50C3C654B}.ReleaseWithoutAsm|Itanium.ActiveCfg = ReleaseWithoutAsm|Win32 |  | ||||||
| 		{AA6666AA-E09F-4135-9C0C-4FE50C3C654B}.ReleaseWithoutAsm|Win32.ActiveCfg = ReleaseWithoutAsm|Win32 |  | ||||||
| 		{AA6666AA-E09F-4135-9C0C-4FE50C3C654B}.ReleaseWithoutAsm|Win32.Build.0 = ReleaseWithoutAsm|Win32 |  | ||||||
| 		{AA6666AA-E09F-4135-9C0C-4FE50C3C654B}.ReleaseWithoutAsm|x64.ActiveCfg = ReleaseWithoutAsm|x64 |  | ||||||
| 		{AA6666AA-E09F-4135-9C0C-4FE50C3C654B}.ReleaseWithoutAsm|x64.Build.0 = ReleaseWithoutAsm|x64 |  | ||||||
| 		{C52F9E7B-498A-42BE-8DB4-85A15694366A}.Debug|Itanium.ActiveCfg = Debug|Win32 |  | ||||||
| 		{C52F9E7B-498A-42BE-8DB4-85A15694366A}.Debug|Win32.ActiveCfg = Debug|Win32 |  | ||||||
| 		{C52F9E7B-498A-42BE-8DB4-85A15694366A}.Debug|Win32.Build.0 = Debug|Win32 |  | ||||||
| 		{C52F9E7B-498A-42BE-8DB4-85A15694366A}.Debug|x64.ActiveCfg = Debug|x64 |  | ||||||
| 		{C52F9E7B-498A-42BE-8DB4-85A15694366A}.Debug|x64.Build.0 = Debug|x64 |  | ||||||
| 		{C52F9E7B-498A-42BE-8DB4-85A15694366A}.Release|Itanium.ActiveCfg = Release|Win32 |  | ||||||
| 		{C52F9E7B-498A-42BE-8DB4-85A15694366A}.Release|Win32.ActiveCfg = Release|Win32 |  | ||||||
| 		{C52F9E7B-498A-42BE-8DB4-85A15694366A}.Release|Win32.Build.0 = Release|Win32 |  | ||||||
| 		{C52F9E7B-498A-42BE-8DB4-85A15694366A}.Release|x64.ActiveCfg = Release|x64 |  | ||||||
| 		{C52F9E7B-498A-42BE-8DB4-85A15694366A}.Release|x64.Build.0 = Release|x64 |  | ||||||
| 		{C52F9E7B-498A-42BE-8DB4-85A15694366A}.ReleaseWithoutAsm|Itanium.ActiveCfg = Release|Win32 |  | ||||||
| 		{C52F9E7B-498A-42BE-8DB4-85A15694366A}.ReleaseWithoutAsm|Win32.ActiveCfg = Release|Win32 |  | ||||||
| 		{C52F9E7B-498A-42BE-8DB4-85A15694366A}.ReleaseWithoutAsm|x64.ActiveCfg = Release|x64 |  | ||||||
| 		{48CDD9DC-E09F-4135-9C0C-4FE50C3C654B}.Debug|Itanium.ActiveCfg = Debug|Win32 |  | ||||||
| 		{48CDD9DC-E09F-4135-9C0C-4FE50C3C654B}.Debug|Win32.ActiveCfg = Debug|Win32 |  | ||||||
| 		{48CDD9DC-E09F-4135-9C0C-4FE50C3C654B}.Debug|Win32.Build.0 = Debug|Win32 |  | ||||||
| 		{48CDD9DC-E09F-4135-9C0C-4FE50C3C654B}.Debug|x64.ActiveCfg = Debug|x64 |  | ||||||
| 		{48CDD9DC-E09F-4135-9C0C-4FE50C3C654B}.Debug|x64.Build.0 = Debug|x64 |  | ||||||
| 		{48CDD9DC-E09F-4135-9C0C-4FE50C3C654B}.Release|Itanium.ActiveCfg = Release|Win32 |  | ||||||
| 		{48CDD9DC-E09F-4135-9C0C-4FE50C3C654B}.Release|Win32.ActiveCfg = Release|Win32 |  | ||||||
| 		{48CDD9DC-E09F-4135-9C0C-4FE50C3C654B}.Release|Win32.Build.0 = Release|Win32 |  | ||||||
| 		{48CDD9DC-E09F-4135-9C0C-4FE50C3C654B}.Release|x64.ActiveCfg = Release|x64 |  | ||||||
| 		{48CDD9DC-E09F-4135-9C0C-4FE50C3C654B}.Release|x64.Build.0 = Release|x64 |  | ||||||
| 		{48CDD9DC-E09F-4135-9C0C-4FE50C3C654B}.ReleaseWithoutAsm|Itanium.ActiveCfg = Release|Win32 |  | ||||||
| 		{48CDD9DC-E09F-4135-9C0C-4FE50C3C654B}.ReleaseWithoutAsm|Win32.ActiveCfg = Release|Win32 |  | ||||||
| 		{48CDD9DC-E09F-4135-9C0C-4FE50C3C654B}.ReleaseWithoutAsm|x64.ActiveCfg = Release|x64 |  | ||||||
| 		{C52F9E7B-498A-42BE-8DB4-85A15694382A}.Debug|Itanium.ActiveCfg = Debug|Win32 |  | ||||||
| 		{C52F9E7B-498A-42BE-8DB4-85A15694382A}.Debug|Win32.ActiveCfg = Debug|Win32 |  | ||||||
| 		{C52F9E7B-498A-42BE-8DB4-85A15694382A}.Debug|Win32.Build.0 = Debug|Win32 |  | ||||||
| 		{C52F9E7B-498A-42BE-8DB4-85A15694382A}.Debug|x64.ActiveCfg = Debug|x64 |  | ||||||
| 		{C52F9E7B-498A-42BE-8DB4-85A15694382A}.Debug|x64.Build.0 = Debug|x64 |  | ||||||
| 		{C52F9E7B-498A-42BE-8DB4-85A15694382A}.Release|Itanium.ActiveCfg = Release|Win32 |  | ||||||
| 		{C52F9E7B-498A-42BE-8DB4-85A15694382A}.Release|Win32.ActiveCfg = Release|Win32 |  | ||||||
| 		{C52F9E7B-498A-42BE-8DB4-85A15694382A}.Release|Win32.Build.0 = Release|Win32 |  | ||||||
| 		{C52F9E7B-498A-42BE-8DB4-85A15694382A}.Release|x64.ActiveCfg = Release|x64 |  | ||||||
| 		{C52F9E7B-498A-42BE-8DB4-85A15694382A}.Release|x64.Build.0 = Release|x64 |  | ||||||
| 		{C52F9E7B-498A-42BE-8DB4-85A15694382A}.ReleaseWithoutAsm|Itanium.ActiveCfg = Release|Win32 |  | ||||||
| 		{C52F9E7B-498A-42BE-8DB4-85A15694382A}.ReleaseWithoutAsm|Win32.ActiveCfg = Release|Win32 |  | ||||||
| 		{C52F9E7B-498A-42BE-8DB4-85A15694382A}.ReleaseWithoutAsm|x64.ActiveCfg = Release|x64 |  | ||||||
| 	EndGlobalSection |  | ||||||
| 	GlobalSection(SolutionProperties) = preSolution |  | ||||||
| 		HideSolutionNode = FALSE |  | ||||||
| 	EndGlobalSection |  | ||||||
| EndGlobal |  | ||||||
| @@ -1,688 +0,0 @@ | |||||||
| <?xml version="1.0" encoding="utf-8"?> |  | ||||||
| <Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> |  | ||||||
|   <ItemGroup Label="ProjectConfigurations"> |  | ||||||
|     <ProjectConfiguration Include="Debug|Itanium"> |  | ||||||
|       <Configuration>Debug</Configuration> |  | ||||||
|       <Platform>Itanium</Platform> |  | ||||||
|     </ProjectConfiguration> |  | ||||||
|     <ProjectConfiguration Include="Debug|Win32"> |  | ||||||
|       <Configuration>Debug</Configuration> |  | ||||||
|       <Platform>Win32</Platform> |  | ||||||
|     </ProjectConfiguration> |  | ||||||
|     <ProjectConfiguration Include="Debug|x64"> |  | ||||||
|       <Configuration>Debug</Configuration> |  | ||||||
|       <Platform>x64</Platform> |  | ||||||
|     </ProjectConfiguration> |  | ||||||
|     <ProjectConfiguration Include="ReleaseWithoutAsm|Itanium"> |  | ||||||
|       <Configuration>ReleaseWithoutAsm</Configuration> |  | ||||||
|       <Platform>Itanium</Platform> |  | ||||||
|     </ProjectConfiguration> |  | ||||||
|     <ProjectConfiguration Include="ReleaseWithoutAsm|Win32"> |  | ||||||
|       <Configuration>ReleaseWithoutAsm</Configuration> |  | ||||||
|       <Platform>Win32</Platform> |  | ||||||
|     </ProjectConfiguration> |  | ||||||
|     <ProjectConfiguration Include="ReleaseWithoutAsm|x64"> |  | ||||||
|       <Configuration>ReleaseWithoutAsm</Configuration> |  | ||||||
|       <Platform>x64</Platform> |  | ||||||
|     </ProjectConfiguration> |  | ||||||
|     <ProjectConfiguration Include="Release|Itanium"> |  | ||||||
|       <Configuration>Release</Configuration> |  | ||||||
|       <Platform>Itanium</Platform> |  | ||||||
|     </ProjectConfiguration> |  | ||||||
|     <ProjectConfiguration Include="Release|Win32"> |  | ||||||
|       <Configuration>Release</Configuration> |  | ||||||
|       <Platform>Win32</Platform> |  | ||||||
|     </ProjectConfiguration> |  | ||||||
|     <ProjectConfiguration Include="Release|x64"> |  | ||||||
|       <Configuration>Release</Configuration> |  | ||||||
|       <Platform>x64</Platform> |  | ||||||
|     </ProjectConfiguration> |  | ||||||
|   </ItemGroup> |  | ||||||
|   <PropertyGroup Label="Globals"> |  | ||||||
|     <ProjectGuid>{8FD826F8-3739-44E6-8CC8-997122E53B8D}</ProjectGuid> |  | ||||||
|   </PropertyGroup> |  | ||||||
|   <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" /> |  | ||||||
|   <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration"> |  | ||||||
|     <ConfigurationType>DynamicLibrary</ConfigurationType> |  | ||||||
|     <UseOfMfc>false</UseOfMfc> |  | ||||||
|     <WholeProgramOptimization>true</WholeProgramOptimization> |  | ||||||
|     <PlatformToolset>v110</PlatformToolset> |  | ||||||
|   </PropertyGroup> |  | ||||||
|   <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='ReleaseWithoutAsm|Win32'" Label="Configuration"> |  | ||||||
|     <ConfigurationType>DynamicLibrary</ConfigurationType> |  | ||||||
|     <UseOfMfc>false</UseOfMfc> |  | ||||||
|     <WholeProgramOptimization>true</WholeProgramOptimization> |  | ||||||
|     <PlatformToolset>v110</PlatformToolset> |  | ||||||
|   </PropertyGroup> |  | ||||||
|   <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration"> |  | ||||||
|     <ConfigurationType>DynamicLibrary</ConfigurationType> |  | ||||||
|     <UseOfMfc>false</UseOfMfc> |  | ||||||
|     <PlatformToolset>v110</PlatformToolset> |  | ||||||
|     <CharacterSet>Unicode</CharacterSet> |  | ||||||
|   </PropertyGroup> |  | ||||||
|   <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Itanium'" Label="Configuration"> |  | ||||||
|     <ConfigurationType>DynamicLibrary</ConfigurationType> |  | ||||||
|     <UseOfMfc>false</UseOfMfc> |  | ||||||
|     <WholeProgramOptimization>true</WholeProgramOptimization> |  | ||||||
|   </PropertyGroup> |  | ||||||
|   <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='ReleaseWithoutAsm|Itanium'" Label="Configuration"> |  | ||||||
|     <ConfigurationType>DynamicLibrary</ConfigurationType> |  | ||||||
|     <UseOfMfc>false</UseOfMfc> |  | ||||||
|     <WholeProgramOptimization>true</WholeProgramOptimization> |  | ||||||
|   </PropertyGroup> |  | ||||||
|   <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Itanium'" Label="Configuration"> |  | ||||||
|     <ConfigurationType>DynamicLibrary</ConfigurationType> |  | ||||||
|     <UseOfMfc>false</UseOfMfc> |  | ||||||
|   </PropertyGroup> |  | ||||||
|   <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration"> |  | ||||||
|     <ConfigurationType>DynamicLibrary</ConfigurationType> |  | ||||||
|     <UseOfMfc>false</UseOfMfc> |  | ||||||
|     <WholeProgramOptimization>true</WholeProgramOptimization> |  | ||||||
|     <PlatformToolset>v110</PlatformToolset> |  | ||||||
|   </PropertyGroup> |  | ||||||
|   <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='ReleaseWithoutAsm|x64'" Label="Configuration"> |  | ||||||
|     <ConfigurationType>DynamicLibrary</ConfigurationType> |  | ||||||
|     <UseOfMfc>false</UseOfMfc> |  | ||||||
|     <WholeProgramOptimization>true</WholeProgramOptimization> |  | ||||||
|     <PlatformToolset>v110</PlatformToolset> |  | ||||||
|   </PropertyGroup> |  | ||||||
|   <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration"> |  | ||||||
|     <ConfigurationType>DynamicLibrary</ConfigurationType> |  | ||||||
|     <UseOfMfc>false</UseOfMfc> |  | ||||||
|     <PlatformToolset>v110</PlatformToolset> |  | ||||||
|   </PropertyGroup> |  | ||||||
|   <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" /> |  | ||||||
|   <ImportGroup Label="ExtensionSettings"> |  | ||||||
|   </ImportGroup> |  | ||||||
|   <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="PropertySheets"> |  | ||||||
|     <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> |  | ||||||
|   </ImportGroup> |  | ||||||
|   <ImportGroup Condition="'$(Configuration)|$(Platform)'=='ReleaseWithoutAsm|Win32'" Label="PropertySheets"> |  | ||||||
|     <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> |  | ||||||
|   </ImportGroup> |  | ||||||
|   <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="PropertySheets"> |  | ||||||
|     <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> |  | ||||||
|   </ImportGroup> |  | ||||||
|   <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|Itanium'" Label="PropertySheets"> |  | ||||||
|     <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> |  | ||||||
|   </ImportGroup> |  | ||||||
|   <ImportGroup Condition="'$(Configuration)|$(Platform)'=='ReleaseWithoutAsm|Itanium'" Label="PropertySheets"> |  | ||||||
|     <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> |  | ||||||
|   </ImportGroup> |  | ||||||
|   <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Itanium'" Label="PropertySheets"> |  | ||||||
|     <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> |  | ||||||
|   </ImportGroup> |  | ||||||
|   <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="PropertySheets"> |  | ||||||
|     <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> |  | ||||||
|   </ImportGroup> |  | ||||||
|   <ImportGroup Condition="'$(Configuration)|$(Platform)'=='ReleaseWithoutAsm|x64'" Label="PropertySheets"> |  | ||||||
|     <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> |  | ||||||
|   </ImportGroup> |  | ||||||
|   <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="PropertySheets"> |  | ||||||
|     <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> |  | ||||||
|   </ImportGroup> |  | ||||||
|   <PropertyGroup Label="UserMacros" /> |  | ||||||
|   <PropertyGroup> |  | ||||||
|     <_ProjectFileVersion>10.0.30128.1</_ProjectFileVersion> |  | ||||||
|     <OutDir Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">x86\ZlibDll$(Configuration)\</OutDir> |  | ||||||
|     <IntDir Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">x86\ZlibDll$(Configuration)\Tmp\</IntDir> |  | ||||||
|     <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">true</LinkIncremental> |  | ||||||
|     <GenerateManifest Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">false</GenerateManifest> |  | ||||||
|     <OutDir Condition="'$(Configuration)|$(Platform)'=='ReleaseWithoutAsm|Win32'">x86\ZlibDll$(Configuration)\</OutDir> |  | ||||||
|     <IntDir Condition="'$(Configuration)|$(Platform)'=='ReleaseWithoutAsm|Win32'">x86\ZlibDll$(Configuration)\Tmp\</IntDir> |  | ||||||
|     <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='ReleaseWithoutAsm|Win32'">false</LinkIncremental> |  | ||||||
|     <GenerateManifest Condition="'$(Configuration)|$(Platform)'=='ReleaseWithoutAsm|Win32'">false</GenerateManifest> |  | ||||||
|     <OutDir Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">x86\ZlibDll$(Configuration)\</OutDir> |  | ||||||
|     <IntDir Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">x86\ZlibDll$(Configuration)\Tmp\</IntDir> |  | ||||||
|     <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">false</LinkIncremental> |  | ||||||
|     <GenerateManifest Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">false</GenerateManifest> |  | ||||||
|     <OutDir Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">x64\ZlibDll$(Configuration)\</OutDir> |  | ||||||
|     <IntDir Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">x64\ZlibDll$(Configuration)\Tmp\</IntDir> |  | ||||||
|     <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</LinkIncremental> |  | ||||||
|     <GenerateManifest Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">false</GenerateManifest> |  | ||||||
|     <OutDir Condition="'$(Configuration)|$(Platform)'=='Debug|Itanium'">ia64\ZlibDll$(Configuration)\</OutDir> |  | ||||||
|     <IntDir Condition="'$(Configuration)|$(Platform)'=='Debug|Itanium'">ia64\ZlibDll$(Configuration)\Tmp\</IntDir> |  | ||||||
|     <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Debug|Itanium'">true</LinkIncremental> |  | ||||||
|     <GenerateManifest Condition="'$(Configuration)|$(Platform)'=='Debug|Itanium'">false</GenerateManifest> |  | ||||||
|     <OutDir Condition="'$(Configuration)|$(Platform)'=='ReleaseWithoutAsm|x64'">x64\ZlibDll$(Configuration)\</OutDir> |  | ||||||
|     <IntDir Condition="'$(Configuration)|$(Platform)'=='ReleaseWithoutAsm|x64'">x64\ZlibDll$(Configuration)\Tmp\</IntDir> |  | ||||||
|     <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='ReleaseWithoutAsm|x64'">false</LinkIncremental> |  | ||||||
|     <GenerateManifest Condition="'$(Configuration)|$(Platform)'=='ReleaseWithoutAsm|x64'">false</GenerateManifest> |  | ||||||
|     <OutDir Condition="'$(Configuration)|$(Platform)'=='ReleaseWithoutAsm|Itanium'">ia64\ZlibDll$(Configuration)\</OutDir> |  | ||||||
|     <IntDir Condition="'$(Configuration)|$(Platform)'=='ReleaseWithoutAsm|Itanium'">ia64\ZlibDll$(Configuration)\Tmp\</IntDir> |  | ||||||
|     <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='ReleaseWithoutAsm|Itanium'">false</LinkIncremental> |  | ||||||
|     <GenerateManifest Condition="'$(Configuration)|$(Platform)'=='ReleaseWithoutAsm|Itanium'">false</GenerateManifest> |  | ||||||
|     <OutDir Condition="'$(Configuration)|$(Platform)'=='Release|x64'">x64\ZlibDll$(Configuration)\</OutDir> |  | ||||||
|     <IntDir Condition="'$(Configuration)|$(Platform)'=='Release|x64'">x64\ZlibDll$(Configuration)\Tmp\</IntDir> |  | ||||||
|     <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Release|x64'">false</LinkIncremental> |  | ||||||
|     <GenerateManifest Condition="'$(Configuration)|$(Platform)'=='Release|x64'">false</GenerateManifest> |  | ||||||
|     <OutDir Condition="'$(Configuration)|$(Platform)'=='Release|Itanium'">ia64\ZlibDll$(Configuration)\</OutDir> |  | ||||||
|     <IntDir Condition="'$(Configuration)|$(Platform)'=='Release|Itanium'">ia64\ZlibDll$(Configuration)\Tmp\</IntDir> |  | ||||||
|     <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Release|Itanium'">false</LinkIncremental> |  | ||||||
|     <GenerateManifest Condition="'$(Configuration)|$(Platform)'=='Release|Itanium'">false</GenerateManifest> |  | ||||||
|     <CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='Debug|Itanium'">AllRules.ruleset</CodeAnalysisRuleSet> |  | ||||||
|     <CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='Debug|Itanium'" /> |  | ||||||
|     <CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='Debug|Itanium'" /> |  | ||||||
|     <CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">AllRules.ruleset</CodeAnalysisRuleSet> |  | ||||||
|     <CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" /> |  | ||||||
|     <CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" /> |  | ||||||
|     <CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">AllRules.ruleset</CodeAnalysisRuleSet> |  | ||||||
|     <CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" /> |  | ||||||
|     <CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" /> |  | ||||||
|     <CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='ReleaseWithoutAsm|Itanium'">AllRules.ruleset</CodeAnalysisRuleSet> |  | ||||||
|     <CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='ReleaseWithoutAsm|Itanium'" /> |  | ||||||
|     <CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='ReleaseWithoutAsm|Itanium'" /> |  | ||||||
|     <CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='ReleaseWithoutAsm|Win32'">AllRules.ruleset</CodeAnalysisRuleSet> |  | ||||||
|     <CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='ReleaseWithoutAsm|Win32'" /> |  | ||||||
|     <CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='ReleaseWithoutAsm|Win32'" /> |  | ||||||
|     <CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='ReleaseWithoutAsm|x64'">AllRules.ruleset</CodeAnalysisRuleSet> |  | ||||||
|     <CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='ReleaseWithoutAsm|x64'" /> |  | ||||||
|     <CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='ReleaseWithoutAsm|x64'" /> |  | ||||||
|     <CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='Release|Itanium'">AllRules.ruleset</CodeAnalysisRuleSet> |  | ||||||
|     <CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='Release|Itanium'" /> |  | ||||||
|     <CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='Release|Itanium'" /> |  | ||||||
|     <CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">AllRules.ruleset</CodeAnalysisRuleSet> |  | ||||||
|     <CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" /> |  | ||||||
|     <CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" /> |  | ||||||
|     <CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='Release|x64'">AllRules.ruleset</CodeAnalysisRuleSet> |  | ||||||
|     <CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='Release|x64'" /> |  | ||||||
|     <CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='Release|x64'" /> |  | ||||||
|     <TargetName Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">zlibwapi</TargetName> |  | ||||||
|     <TargetName Condition="'$(Configuration)|$(Platform)'=='ReleaseWithoutAsm|Win32'">zlibwapi</TargetName> |  | ||||||
|     <TargetName Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">zlibwapi</TargetName> |  | ||||||
|     <TargetName Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">zlibwapi</TargetName> |  | ||||||
|     <TargetName Condition="'$(Configuration)|$(Platform)'=='ReleaseWithoutAsm|x64'">zlibwapi</TargetName> |  | ||||||
|     <TargetName Condition="'$(Configuration)|$(Platform)'=='Release|x64'">zlibwapi</TargetName> |  | ||||||
|   </PropertyGroup> |  | ||||||
|   <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> |  | ||||||
|     <Midl> |  | ||||||
|       <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions> |  | ||||||
|       <MkTypLibCompatible>true</MkTypLibCompatible> |  | ||||||
|       <SuppressStartupBanner>true</SuppressStartupBanner> |  | ||||||
|       <TargetEnvironment>Win32</TargetEnvironment> |  | ||||||
|       <TypeLibraryName>$(OutDir)zlibvc.tlb</TypeLibraryName> |  | ||||||
|     </Midl> |  | ||||||
|     <ClCompile> |  | ||||||
|       <Optimization>Disabled</Optimization> |  | ||||||
|       <AdditionalIncludeDirectories>..\..\..;..\..\masmx86;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> |  | ||||||
|       <PreprocessorDefinitions>WIN32;_CRT_NONSTDC_NO_DEPRECATE;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_WARNINGS;ZLIB_WINAPI;ASMV;ASMINF;%(PreprocessorDefinitions)</PreprocessorDefinitions> |  | ||||||
|       <ExceptionHandling> |  | ||||||
|       </ExceptionHandling> |  | ||||||
|       <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary> |  | ||||||
|       <BufferSecurityCheck>false</BufferSecurityCheck> |  | ||||||
|       <PrecompiledHeaderOutputFile>$(IntDir)zlibvc.pch</PrecompiledHeaderOutputFile> |  | ||||||
|       <AssemblerListingLocation>$(IntDir)</AssemblerListingLocation> |  | ||||||
|       <ObjectFileName>$(IntDir)</ObjectFileName> |  | ||||||
|       <ProgramDataBaseFileName>$(OutDir)</ProgramDataBaseFileName> |  | ||||||
|       <BrowseInformation> |  | ||||||
|       </BrowseInformation> |  | ||||||
|       <WarningLevel>Level3</WarningLevel> |  | ||||||
|       <SuppressStartupBanner>true</SuppressStartupBanner> |  | ||||||
|       <DebugInformationFormat>ProgramDatabase</DebugInformationFormat> |  | ||||||
|     </ClCompile> |  | ||||||
|     <ResourceCompile> |  | ||||||
|       <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions> |  | ||||||
|       <Culture>0x040c</Culture> |  | ||||||
|     </ResourceCompile> |  | ||||||
|     <Link> |  | ||||||
|       <AdditionalOptions>/MACHINE:I386 %(AdditionalOptions)</AdditionalOptions> |  | ||||||
|       <AdditionalDependencies>..\..\masmx86\match686.obj;..\..\masmx86\inffas32.obj;%(AdditionalDependencies)</AdditionalDependencies> |  | ||||||
|       <OutputFile>$(OutDir)zlibwapi.dll</OutputFile> |  | ||||||
|       <SuppressStartupBanner>true</SuppressStartupBanner> |  | ||||||
|       <ModuleDefinitionFile>.\zlibvc.def</ModuleDefinitionFile> |  | ||||||
|       <GenerateDebugInformation>true</GenerateDebugInformation> |  | ||||||
|       <ProgramDatabaseFile>$(OutDir)zlibwapi.pdb</ProgramDatabaseFile> |  | ||||||
|       <GenerateMapFile>true</GenerateMapFile> |  | ||||||
|       <MapFileName>$(OutDir)zlibwapi.map</MapFileName> |  | ||||||
|       <SubSystem>Windows</SubSystem> |  | ||||||
|       <RandomizedBaseAddress>false</RandomizedBaseAddress> |  | ||||||
|       <DataExecutionPrevention> |  | ||||||
|       </DataExecutionPrevention> |  | ||||||
|       <ImportLibrary>$(OutDir)zlibwapi.lib</ImportLibrary> |  | ||||||
|     </Link> |  | ||||||
|     <PreBuildEvent> |  | ||||||
|       <Command>cd ..\..\masmx86 |  | ||||||
| bld_ml32.bat</Command> |  | ||||||
|     </PreBuildEvent> |  | ||||||
|   </ItemDefinitionGroup> |  | ||||||
|   <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='ReleaseWithoutAsm|Win32'"> |  | ||||||
|     <Midl> |  | ||||||
|       <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions> |  | ||||||
|       <MkTypLibCompatible>true</MkTypLibCompatible> |  | ||||||
|       <SuppressStartupBanner>true</SuppressStartupBanner> |  | ||||||
|       <TargetEnvironment>Win32</TargetEnvironment> |  | ||||||
|       <TypeLibraryName>$(OutDir)zlibvc.tlb</TypeLibraryName> |  | ||||||
|     </Midl> |  | ||||||
|     <ClCompile> |  | ||||||
|       <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion> |  | ||||||
|       <AdditionalIncludeDirectories>..\..\..;..\..\masmx86;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> |  | ||||||
|       <PreprocessorDefinitions>WIN32;_CRT_NONSTDC_NO_DEPRECATE;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_WARNINGS;ZLIB_WINAPI;%(PreprocessorDefinitions)</PreprocessorDefinitions> |  | ||||||
|       <StringPooling>true</StringPooling> |  | ||||||
|       <ExceptionHandling> |  | ||||||
|       </ExceptionHandling> |  | ||||||
|       <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary> |  | ||||||
|       <BufferSecurityCheck>false</BufferSecurityCheck> |  | ||||||
|       <FunctionLevelLinking>true</FunctionLevelLinking> |  | ||||||
|       <PrecompiledHeaderOutputFile>$(IntDir)zlibvc.pch</PrecompiledHeaderOutputFile> |  | ||||||
|       <AssemblerOutput>All</AssemblerOutput> |  | ||||||
|       <AssemblerListingLocation>$(IntDir)</AssemblerListingLocation> |  | ||||||
|       <ObjectFileName>$(IntDir)</ObjectFileName> |  | ||||||
|       <ProgramDataBaseFileName>$(OutDir)</ProgramDataBaseFileName> |  | ||||||
|       <BrowseInformation> |  | ||||||
|       </BrowseInformation> |  | ||||||
|       <WarningLevel>Level3</WarningLevel> |  | ||||||
|       <SuppressStartupBanner>true</SuppressStartupBanner> |  | ||||||
|     </ClCompile> |  | ||||||
|     <ResourceCompile> |  | ||||||
|       <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions> |  | ||||||
|       <Culture>0x040c</Culture> |  | ||||||
|     </ResourceCompile> |  | ||||||
|     <Link> |  | ||||||
|       <AdditionalOptions>/MACHINE:I386 %(AdditionalOptions)</AdditionalOptions> |  | ||||||
|       <OutputFile>$(OutDir)zlibwapi.dll</OutputFile> |  | ||||||
|       <SuppressStartupBanner>true</SuppressStartupBanner> |  | ||||||
|       <IgnoreAllDefaultLibraries>false</IgnoreAllDefaultLibraries> |  | ||||||
|       <ModuleDefinitionFile>.\zlibvc.def</ModuleDefinitionFile> |  | ||||||
|       <ProgramDatabaseFile>$(OutDir)zlibwapi.pdb</ProgramDatabaseFile> |  | ||||||
|       <GenerateMapFile>true</GenerateMapFile> |  | ||||||
|       <MapFileName>$(OutDir)zlibwapi.map</MapFileName> |  | ||||||
|       <SubSystem>Windows</SubSystem> |  | ||||||
|       <RandomizedBaseAddress>false</RandomizedBaseAddress> |  | ||||||
|       <DataExecutionPrevention> |  | ||||||
|       </DataExecutionPrevention> |  | ||||||
|       <ImportLibrary>$(OutDir)zlibwapi.lib</ImportLibrary> |  | ||||||
|     </Link> |  | ||||||
|   </ItemDefinitionGroup> |  | ||||||
|   <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'"> |  | ||||||
|     <Midl> |  | ||||||
|       <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions> |  | ||||||
|       <MkTypLibCompatible>true</MkTypLibCompatible> |  | ||||||
|       <SuppressStartupBanner>true</SuppressStartupBanner> |  | ||||||
|       <TargetEnvironment>Win32</TargetEnvironment> |  | ||||||
|       <TypeLibraryName>$(OutDir)zlibvc.tlb</TypeLibraryName> |  | ||||||
|     </Midl> |  | ||||||
|     <ClCompile> |  | ||||||
|       <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion> |  | ||||||
|       <AdditionalIncludeDirectories>..\..\..;..\..\masmx86;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> |  | ||||||
|       <PreprocessorDefinitions>WIN32;_CRT_NONSTDC_NO_DEPRECATE;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_WARNINGS;ZLIB_WINAPI;ASMV;ASMINF;%(PreprocessorDefinitions)</PreprocessorDefinitions> |  | ||||||
|       <StringPooling>true</StringPooling> |  | ||||||
|       <ExceptionHandling> |  | ||||||
|       </ExceptionHandling> |  | ||||||
|       <RuntimeLibrary>MultiThreaded</RuntimeLibrary> |  | ||||||
|       <BufferSecurityCheck>false</BufferSecurityCheck> |  | ||||||
|       <FunctionLevelLinking>true</FunctionLevelLinking> |  | ||||||
|       <PrecompiledHeaderOutputFile>$(IntDir)zlibvc.pch</PrecompiledHeaderOutputFile> |  | ||||||
|       <AssemblerOutput>All</AssemblerOutput> |  | ||||||
|       <AssemblerListingLocation>$(IntDir)</AssemblerListingLocation> |  | ||||||
|       <ObjectFileName>$(IntDir)</ObjectFileName> |  | ||||||
|       <ProgramDataBaseFileName>$(OutDir)</ProgramDataBaseFileName> |  | ||||||
|       <BrowseInformation> |  | ||||||
|       </BrowseInformation> |  | ||||||
|       <WarningLevel>Level3</WarningLevel> |  | ||||||
|       <SuppressStartupBanner>true</SuppressStartupBanner> |  | ||||||
|     </ClCompile> |  | ||||||
|     <ResourceCompile> |  | ||||||
|       <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions> |  | ||||||
|       <Culture>0x040c</Culture> |  | ||||||
|     </ResourceCompile> |  | ||||||
|     <Link> |  | ||||||
|       <AdditionalOptions>/MACHINE:I386 %(AdditionalOptions)</AdditionalOptions> |  | ||||||
|       <AdditionalDependencies>..\..\masmx86\match686.obj;..\..\masmx86\inffas32.obj;%(AdditionalDependencies)</AdditionalDependencies> |  | ||||||
|       <OutputFile>$(OutDir)zlibwapi.dll</OutputFile> |  | ||||||
|       <SuppressStartupBanner>true</SuppressStartupBanner> |  | ||||||
|       <IgnoreAllDefaultLibraries>false</IgnoreAllDefaultLibraries> |  | ||||||
|       <ModuleDefinitionFile>.\zlibvc.def</ModuleDefinitionFile> |  | ||||||
|       <ProgramDatabaseFile>$(OutDir)zlibwapi.pdb</ProgramDatabaseFile> |  | ||||||
|       <GenerateMapFile>true</GenerateMapFile> |  | ||||||
|       <MapFileName>$(OutDir)zlibwapi.map</MapFileName> |  | ||||||
|       <SubSystem>Windows</SubSystem> |  | ||||||
|       <RandomizedBaseAddress>false</RandomizedBaseAddress> |  | ||||||
|       <DataExecutionPrevention> |  | ||||||
|       </DataExecutionPrevention> |  | ||||||
|       <ImportLibrary>$(OutDir)zlibwapi.lib</ImportLibrary> |  | ||||||
|     </Link> |  | ||||||
|     <PreBuildEvent> |  | ||||||
|       <Command>cd ..\..\masmx86 |  | ||||||
| bld_ml32.bat</Command> |  | ||||||
|     </PreBuildEvent> |  | ||||||
|   </ItemDefinitionGroup> |  | ||||||
|   <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'"> |  | ||||||
|     <Midl> |  | ||||||
|       <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions> |  | ||||||
|       <MkTypLibCompatible>true</MkTypLibCompatible> |  | ||||||
|       <SuppressStartupBanner>true</SuppressStartupBanner> |  | ||||||
|       <TargetEnvironment>X64</TargetEnvironment> |  | ||||||
|       <TypeLibraryName>$(OutDir)zlibvc.tlb</TypeLibraryName> |  | ||||||
|     </Midl> |  | ||||||
|     <ClCompile> |  | ||||||
|       <Optimization>Disabled</Optimization> |  | ||||||
|       <AdditionalIncludeDirectories>..\..\..;..\..\masmx86;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> |  | ||||||
|       <PreprocessorDefinitions>WIN32;_CRT_NONSTDC_NO_DEPRECATE;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_WARNINGS;ZLIB_WINAPI;ASMV;ASMINF;WIN64;%(PreprocessorDefinitions)</PreprocessorDefinitions> |  | ||||||
|       <ExceptionHandling> |  | ||||||
|       </ExceptionHandling> |  | ||||||
|       <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary> |  | ||||||
|       <BufferSecurityCheck>false</BufferSecurityCheck> |  | ||||||
|       <PrecompiledHeaderOutputFile>$(IntDir)zlibvc.pch</PrecompiledHeaderOutputFile> |  | ||||||
|       <AssemblerListingLocation>$(IntDir)</AssemblerListingLocation> |  | ||||||
|       <ObjectFileName>$(IntDir)</ObjectFileName> |  | ||||||
|       <ProgramDataBaseFileName>$(OutDir)</ProgramDataBaseFileName> |  | ||||||
|       <BrowseInformation> |  | ||||||
|       </BrowseInformation> |  | ||||||
|       <WarningLevel>Level3</WarningLevel> |  | ||||||
|       <SuppressStartupBanner>true</SuppressStartupBanner> |  | ||||||
|       <DebugInformationFormat>ProgramDatabase</DebugInformationFormat> |  | ||||||
|     </ClCompile> |  | ||||||
|     <ResourceCompile> |  | ||||||
|       <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions> |  | ||||||
|       <Culture>0x040c</Culture> |  | ||||||
|     </ResourceCompile> |  | ||||||
|     <Link> |  | ||||||
|       <AdditionalDependencies>..\..\masmx64\gvmat64.obj;..\..\masmx64\inffasx64.obj;%(AdditionalDependencies)</AdditionalDependencies> |  | ||||||
|       <OutputFile>$(OutDir)zlibwapi.dll</OutputFile> |  | ||||||
|       <SuppressStartupBanner>true</SuppressStartupBanner> |  | ||||||
|       <ModuleDefinitionFile>.\zlibvc.def</ModuleDefinitionFile> |  | ||||||
|       <GenerateDebugInformation>true</GenerateDebugInformation> |  | ||||||
|       <ProgramDatabaseFile>$(OutDir)zlibwapi.pdb</ProgramDatabaseFile> |  | ||||||
|       <GenerateMapFile>true</GenerateMapFile> |  | ||||||
|       <MapFileName>$(OutDir)zlibwapi.map</MapFileName> |  | ||||||
|       <SubSystem>Windows</SubSystem> |  | ||||||
|       <ImportLibrary>$(OutDir)zlibwapi.lib</ImportLibrary> |  | ||||||
|       <TargetMachine>MachineX64</TargetMachine> |  | ||||||
|     </Link> |  | ||||||
|     <PreBuildEvent> |  | ||||||
|       <Command>cd ..\..\contrib\masmx64 |  | ||||||
| bld_ml64.bat</Command> |  | ||||||
|     </PreBuildEvent> |  | ||||||
|   </ItemDefinitionGroup> |  | ||||||
|   <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Itanium'"> |  | ||||||
|     <Midl> |  | ||||||
|       <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions> |  | ||||||
|       <MkTypLibCompatible>true</MkTypLibCompatible> |  | ||||||
|       <SuppressStartupBanner>true</SuppressStartupBanner> |  | ||||||
|       <TargetEnvironment>Itanium</TargetEnvironment> |  | ||||||
|       <TypeLibraryName>$(OutDir)zlibvc.tlb</TypeLibraryName> |  | ||||||
|     </Midl> |  | ||||||
|     <ClCompile> |  | ||||||
|       <Optimization>Disabled</Optimization> |  | ||||||
|       <AdditionalIncludeDirectories>..\..\..;..\..\masmx86;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> |  | ||||||
|       <PreprocessorDefinitions>WIN32;_CRT_NONSTDC_NO_DEPRECATE;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_WARNINGS;ZLIB_WINAPI;WIN64;%(PreprocessorDefinitions)</PreprocessorDefinitions> |  | ||||||
|       <ExceptionHandling> |  | ||||||
|       </ExceptionHandling> |  | ||||||
|       <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary> |  | ||||||
|       <BufferSecurityCheck>false</BufferSecurityCheck> |  | ||||||
|       <PrecompiledHeaderOutputFile>$(IntDir)zlibvc.pch</PrecompiledHeaderOutputFile> |  | ||||||
|       <AssemblerListingLocation>$(IntDir)</AssemblerListingLocation> |  | ||||||
|       <ObjectFileName>$(IntDir)</ObjectFileName> |  | ||||||
|       <ProgramDataBaseFileName>$(OutDir)</ProgramDataBaseFileName> |  | ||||||
|       <BrowseInformation> |  | ||||||
|       </BrowseInformation> |  | ||||||
|       <WarningLevel>Level3</WarningLevel> |  | ||||||
|       <SuppressStartupBanner>true</SuppressStartupBanner> |  | ||||||
|       <DebugInformationFormat>ProgramDatabase</DebugInformationFormat> |  | ||||||
|     </ClCompile> |  | ||||||
|     <ResourceCompile> |  | ||||||
|       <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions> |  | ||||||
|       <Culture>0x040c</Culture> |  | ||||||
|     </ResourceCompile> |  | ||||||
|     <Link> |  | ||||||
|       <OutputFile>$(OutDir)zlibwapi.dll</OutputFile> |  | ||||||
|       <SuppressStartupBanner>true</SuppressStartupBanner> |  | ||||||
|       <ModuleDefinitionFile>.\zlibvc.def</ModuleDefinitionFile> |  | ||||||
|       <GenerateDebugInformation>true</GenerateDebugInformation> |  | ||||||
|       <ProgramDatabaseFile>$(OutDir)zlibwapi.pdb</ProgramDatabaseFile> |  | ||||||
|       <GenerateMapFile>true</GenerateMapFile> |  | ||||||
|       <MapFileName>$(OutDir)zlibwapi.map</MapFileName> |  | ||||||
|       <SubSystem>Windows</SubSystem> |  | ||||||
|       <ImportLibrary>$(OutDir)zlibwapi.lib</ImportLibrary> |  | ||||||
|       <TargetMachine>MachineIA64</TargetMachine> |  | ||||||
|     </Link> |  | ||||||
|   </ItemDefinitionGroup> |  | ||||||
|   <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='ReleaseWithoutAsm|x64'"> |  | ||||||
|     <Midl> |  | ||||||
|       <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions> |  | ||||||
|       <MkTypLibCompatible>true</MkTypLibCompatible> |  | ||||||
|       <SuppressStartupBanner>true</SuppressStartupBanner> |  | ||||||
|       <TargetEnvironment>X64</TargetEnvironment> |  | ||||||
|       <TypeLibraryName>$(OutDir)zlibvc.tlb</TypeLibraryName> |  | ||||||
|     </Midl> |  | ||||||
|     <ClCompile> |  | ||||||
|       <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion> |  | ||||||
|       <AdditionalIncludeDirectories>..\..\..;..\..\masmx86;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> |  | ||||||
|       <PreprocessorDefinitions>WIN32;_CRT_NONSTDC_NO_DEPRECATE;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_WARNINGS;ZLIB_WINAPI;WIN64;%(PreprocessorDefinitions)</PreprocessorDefinitions> |  | ||||||
|       <StringPooling>true</StringPooling> |  | ||||||
|       <ExceptionHandling> |  | ||||||
|       </ExceptionHandling> |  | ||||||
|       <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary> |  | ||||||
|       <BufferSecurityCheck>false</BufferSecurityCheck> |  | ||||||
|       <FunctionLevelLinking>true</FunctionLevelLinking> |  | ||||||
|       <PrecompiledHeaderOutputFile>$(IntDir)zlibvc.pch</PrecompiledHeaderOutputFile> |  | ||||||
|       <AssemblerOutput>All</AssemblerOutput> |  | ||||||
|       <AssemblerListingLocation>$(IntDir)</AssemblerListingLocation> |  | ||||||
|       <ObjectFileName>$(IntDir)</ObjectFileName> |  | ||||||
|       <ProgramDataBaseFileName>$(OutDir)</ProgramDataBaseFileName> |  | ||||||
|       <BrowseInformation> |  | ||||||
|       </BrowseInformation> |  | ||||||
|       <WarningLevel>Level3</WarningLevel> |  | ||||||
|       <SuppressStartupBanner>true</SuppressStartupBanner> |  | ||||||
|     </ClCompile> |  | ||||||
|     <ResourceCompile> |  | ||||||
|       <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions> |  | ||||||
|       <Culture>0x040c</Culture> |  | ||||||
|     </ResourceCompile> |  | ||||||
|     <Link> |  | ||||||
|       <OutputFile>$(OutDir)zlibwapi.dll</OutputFile> |  | ||||||
|       <SuppressStartupBanner>true</SuppressStartupBanner> |  | ||||||
|       <IgnoreAllDefaultLibraries>false</IgnoreAllDefaultLibraries> |  | ||||||
|       <ModuleDefinitionFile>.\zlibvc.def</ModuleDefinitionFile> |  | ||||||
|       <ProgramDatabaseFile>$(OutDir)zlibwapi.pdb</ProgramDatabaseFile> |  | ||||||
|       <GenerateMapFile>true</GenerateMapFile> |  | ||||||
|       <MapFileName>$(OutDir)zlibwapi.map</MapFileName> |  | ||||||
|       <SubSystem>Windows</SubSystem> |  | ||||||
|       <ImportLibrary>$(OutDir)zlibwapi.lib</ImportLibrary> |  | ||||||
|       <TargetMachine>MachineX64</TargetMachine> |  | ||||||
|     </Link> |  | ||||||
|   </ItemDefinitionGroup> |  | ||||||
|   <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='ReleaseWithoutAsm|Itanium'"> |  | ||||||
|     <Midl> |  | ||||||
|       <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions> |  | ||||||
|       <MkTypLibCompatible>true</MkTypLibCompatible> |  | ||||||
|       <SuppressStartupBanner>true</SuppressStartupBanner> |  | ||||||
|       <TargetEnvironment>Itanium</TargetEnvironment> |  | ||||||
|       <TypeLibraryName>$(OutDir)zlibvc.tlb</TypeLibraryName> |  | ||||||
|     </Midl> |  | ||||||
|     <ClCompile> |  | ||||||
|       <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion> |  | ||||||
|       <AdditionalIncludeDirectories>..\..\..;..\..\masmx86;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> |  | ||||||
|       <PreprocessorDefinitions>WIN32;_CRT_NONSTDC_NO_DEPRECATE;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_WARNINGS;ZLIB_WINAPI;WIN64;%(PreprocessorDefinitions)</PreprocessorDefinitions> |  | ||||||
|       <StringPooling>true</StringPooling> |  | ||||||
|       <ExceptionHandling> |  | ||||||
|       </ExceptionHandling> |  | ||||||
|       <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary> |  | ||||||
|       <BufferSecurityCheck>false</BufferSecurityCheck> |  | ||||||
|       <FunctionLevelLinking>true</FunctionLevelLinking> |  | ||||||
|       <PrecompiledHeaderOutputFile>$(IntDir)zlibvc.pch</PrecompiledHeaderOutputFile> |  | ||||||
|       <AssemblerOutput>All</AssemblerOutput> |  | ||||||
|       <AssemblerListingLocation>$(IntDir)</AssemblerListingLocation> |  | ||||||
|       <ObjectFileName>$(IntDir)</ObjectFileName> |  | ||||||
|       <ProgramDataBaseFileName>$(OutDir)</ProgramDataBaseFileName> |  | ||||||
|       <BrowseInformation> |  | ||||||
|       </BrowseInformation> |  | ||||||
|       <WarningLevel>Level3</WarningLevel> |  | ||||||
|       <SuppressStartupBanner>true</SuppressStartupBanner> |  | ||||||
|     </ClCompile> |  | ||||||
|     <ResourceCompile> |  | ||||||
|       <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions> |  | ||||||
|       <Culture>0x040c</Culture> |  | ||||||
|     </ResourceCompile> |  | ||||||
|     <Link> |  | ||||||
|       <OutputFile>$(OutDir)zlibwapi.dll</OutputFile> |  | ||||||
|       <SuppressStartupBanner>true</SuppressStartupBanner> |  | ||||||
|       <IgnoreAllDefaultLibraries>false</IgnoreAllDefaultLibraries> |  | ||||||
|       <ModuleDefinitionFile>.\zlibvc.def</ModuleDefinitionFile> |  | ||||||
|       <ProgramDatabaseFile>$(OutDir)zlibwapi.pdb</ProgramDatabaseFile> |  | ||||||
|       <GenerateMapFile>true</GenerateMapFile> |  | ||||||
|       <MapFileName>$(OutDir)zlibwapi.map</MapFileName> |  | ||||||
|       <SubSystem>Windows</SubSystem> |  | ||||||
|       <ImportLibrary>$(OutDir)zlibwapi.lib</ImportLibrary> |  | ||||||
|       <TargetMachine>MachineIA64</TargetMachine> |  | ||||||
|     </Link> |  | ||||||
|   </ItemDefinitionGroup> |  | ||||||
|   <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'"> |  | ||||||
|     <Midl> |  | ||||||
|       <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions> |  | ||||||
|       <MkTypLibCompatible>true</MkTypLibCompatible> |  | ||||||
|       <SuppressStartupBanner>true</SuppressStartupBanner> |  | ||||||
|       <TargetEnvironment>X64</TargetEnvironment> |  | ||||||
|       <TypeLibraryName>$(OutDir)zlibvc.tlb</TypeLibraryName> |  | ||||||
|     </Midl> |  | ||||||
|     <ClCompile> |  | ||||||
|       <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion> |  | ||||||
|       <AdditionalIncludeDirectories>..\..\..;..\..\masmx86;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> |  | ||||||
|       <PreprocessorDefinitions>_CRT_NONSTDC_NO_DEPRECATE;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_WARNINGS;ZLIB_WINAPI;ASMV;ASMINF;WIN64;%(PreprocessorDefinitions)</PreprocessorDefinitions> |  | ||||||
|       <StringPooling>true</StringPooling> |  | ||||||
|       <ExceptionHandling> |  | ||||||
|       </ExceptionHandling> |  | ||||||
|       <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary> |  | ||||||
|       <BufferSecurityCheck>false</BufferSecurityCheck> |  | ||||||
|       <FunctionLevelLinking>true</FunctionLevelLinking> |  | ||||||
|       <PrecompiledHeaderOutputFile>$(IntDir)zlibvc.pch</PrecompiledHeaderOutputFile> |  | ||||||
|       <AssemblerOutput>All</AssemblerOutput> |  | ||||||
|       <AssemblerListingLocation>$(IntDir)</AssemblerListingLocation> |  | ||||||
|       <ObjectFileName>$(IntDir)</ObjectFileName> |  | ||||||
|       <ProgramDataBaseFileName>$(OutDir)</ProgramDataBaseFileName> |  | ||||||
|       <BrowseInformation> |  | ||||||
|       </BrowseInformation> |  | ||||||
|       <WarningLevel>Level3</WarningLevel> |  | ||||||
|       <SuppressStartupBanner>true</SuppressStartupBanner> |  | ||||||
|     </ClCompile> |  | ||||||
|     <ResourceCompile> |  | ||||||
|       <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions> |  | ||||||
|       <Culture>0x040c</Culture> |  | ||||||
|     </ResourceCompile> |  | ||||||
|     <Link> |  | ||||||
|       <AdditionalDependencies>..\..\masmx64\gvmat64.obj;..\..\masmx64\inffasx64.obj;%(AdditionalDependencies)</AdditionalDependencies> |  | ||||||
|       <OutputFile>$(OutDir)zlibwapi.dll</OutputFile> |  | ||||||
|       <SuppressStartupBanner>true</SuppressStartupBanner> |  | ||||||
|       <IgnoreAllDefaultLibraries>false</IgnoreAllDefaultLibraries> |  | ||||||
|       <ModuleDefinitionFile>.\zlibvc.def</ModuleDefinitionFile> |  | ||||||
|       <ProgramDatabaseFile>$(OutDir)zlibwapi.pdb</ProgramDatabaseFile> |  | ||||||
|       <GenerateMapFile>true</GenerateMapFile> |  | ||||||
|       <MapFileName>$(OutDir)zlibwapi.map</MapFileName> |  | ||||||
|       <SubSystem>Windows</SubSystem> |  | ||||||
|       <ImportLibrary>$(OutDir)zlibwapi.lib</ImportLibrary> |  | ||||||
|       <TargetMachine>MachineX64</TargetMachine> |  | ||||||
|     </Link> |  | ||||||
|     <PreBuildEvent> |  | ||||||
|       <Command>cd ..\..\masmx64 |  | ||||||
| bld_ml64.bat</Command> |  | ||||||
|     </PreBuildEvent> |  | ||||||
|   </ItemDefinitionGroup> |  | ||||||
|   <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Itanium'"> |  | ||||||
|     <Midl> |  | ||||||
|       <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions> |  | ||||||
|       <MkTypLibCompatible>true</MkTypLibCompatible> |  | ||||||
|       <SuppressStartupBanner>true</SuppressStartupBanner> |  | ||||||
|       <TargetEnvironment>Itanium</TargetEnvironment> |  | ||||||
|       <TypeLibraryName>$(OutDir)zlibvc.tlb</TypeLibraryName> |  | ||||||
|     </Midl> |  | ||||||
|     <ClCompile> |  | ||||||
|       <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion> |  | ||||||
|       <AdditionalIncludeDirectories>..\..\..;..\..\masmx86;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> |  | ||||||
|       <PreprocessorDefinitions>_CRT_NONSTDC_NO_DEPRECATE;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_WARNINGS;ZLIB_WINAPI;WIN64;%(PreprocessorDefinitions)</PreprocessorDefinitions> |  | ||||||
|       <StringPooling>true</StringPooling> |  | ||||||
|       <ExceptionHandling> |  | ||||||
|       </ExceptionHandling> |  | ||||||
|       <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary> |  | ||||||
|       <BufferSecurityCheck>false</BufferSecurityCheck> |  | ||||||
|       <FunctionLevelLinking>true</FunctionLevelLinking> |  | ||||||
|       <PrecompiledHeaderOutputFile>$(IntDir)zlibvc.pch</PrecompiledHeaderOutputFile> |  | ||||||
|       <AssemblerOutput>All</AssemblerOutput> |  | ||||||
|       <AssemblerListingLocation>$(IntDir)</AssemblerListingLocation> |  | ||||||
|       <ObjectFileName>$(IntDir)</ObjectFileName> |  | ||||||
|       <ProgramDataBaseFileName>$(OutDir)</ProgramDataBaseFileName> |  | ||||||
|       <BrowseInformation> |  | ||||||
|       </BrowseInformation> |  | ||||||
|       <WarningLevel>Level3</WarningLevel> |  | ||||||
|       <SuppressStartupBanner>true</SuppressStartupBanner> |  | ||||||
|     </ClCompile> |  | ||||||
|     <ResourceCompile> |  | ||||||
|       <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions> |  | ||||||
|       <Culture>0x040c</Culture> |  | ||||||
|     </ResourceCompile> |  | ||||||
|     <Link> |  | ||||||
|       <OutputFile>$(OutDir)zlibwapi.dll</OutputFile> |  | ||||||
|       <SuppressStartupBanner>true</SuppressStartupBanner> |  | ||||||
|       <IgnoreAllDefaultLibraries>false</IgnoreAllDefaultLibraries> |  | ||||||
|       <ModuleDefinitionFile>.\zlibvc.def</ModuleDefinitionFile> |  | ||||||
|       <ProgramDatabaseFile>$(OutDir)zlibwapi.pdb</ProgramDatabaseFile> |  | ||||||
|       <GenerateMapFile>true</GenerateMapFile> |  | ||||||
|       <MapFileName>$(OutDir)zlibwapi.map</MapFileName> |  | ||||||
|       <SubSystem>Windows</SubSystem> |  | ||||||
|       <ImportLibrary>$(OutDir)zlibwapi.lib</ImportLibrary> |  | ||||||
|       <TargetMachine>MachineIA64</TargetMachine> |  | ||||||
|     </Link> |  | ||||||
|   </ItemDefinitionGroup> |  | ||||||
|   <ItemGroup> |  | ||||||
|     <ClCompile Include="..\..\..\adler32.c" /> |  | ||||||
|     <ClCompile Include="..\..\..\compress.c" /> |  | ||||||
|     <ClCompile Include="..\..\..\crc32.c" /> |  | ||||||
|     <ClCompile Include="..\..\..\deflate.c" /> |  | ||||||
|     <ClCompile Include="..\..\..\gzclose.c" /> |  | ||||||
|     <ClCompile Include="..\..\..\gzlib.c" /> |  | ||||||
|     <ClCompile Include="..\..\..\gzread.c" /> |  | ||||||
|     <ClCompile Include="..\..\..\gzwrite.c" /> |  | ||||||
|     <ClCompile Include="..\..\..\infback.c" /> |  | ||||||
|     <ClCompile Include="..\..\masmx64\inffas8664.c"> |  | ||||||
|       <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|Itanium'">true</ExcludedFromBuild> |  | ||||||
|       <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">true</ExcludedFromBuild> |  | ||||||
|       <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='ReleaseWithoutAsm|Itanium'">true</ExcludedFromBuild> |  | ||||||
|       <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='ReleaseWithoutAsm|Win32'">true</ExcludedFromBuild> |  | ||||||
|       <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|Itanium'">true</ExcludedFromBuild> |  | ||||||
|       <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">true</ExcludedFromBuild> |  | ||||||
|     </ClCompile> |  | ||||||
|     <ClCompile Include="..\..\..\inffast.c" /> |  | ||||||
|     <ClCompile Include="..\..\..\inflate.c" /> |  | ||||||
|     <ClCompile Include="..\..\..\inftrees.c" /> |  | ||||||
|     <ClCompile Include="..\..\minizip\ioapi.c" /> |  | ||||||
|     <ClCompile Include="..\..\minizip\iowin32.c" /> |  | ||||||
|     <ClCompile Include="..\..\..\trees.c" /> |  | ||||||
|     <ClCompile Include="..\..\..\uncompr.c" /> |  | ||||||
|     <ClCompile Include="..\..\minizip\unzip.c"> |  | ||||||
|       <AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Release|Itanium'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> |  | ||||||
|       <PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Release|Itanium'">ZLIB_INTERNAL;%(PreprocessorDefinitions)</PreprocessorDefinitions> |  | ||||||
|       <AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> |  | ||||||
|       <PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">ZLIB_INTERNAL;%(PreprocessorDefinitions)</PreprocessorDefinitions> |  | ||||||
|       <AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Release|x64'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> |  | ||||||
|       <PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Release|x64'">ZLIB_INTERNAL;%(PreprocessorDefinitions)</PreprocessorDefinitions> |  | ||||||
|     </ClCompile> |  | ||||||
|     <ClCompile Include="..\..\minizip\zip.c"> |  | ||||||
|       <AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Release|Itanium'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> |  | ||||||
|       <PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Release|Itanium'">ZLIB_INTERNAL;%(PreprocessorDefinitions)</PreprocessorDefinitions> |  | ||||||
|       <AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> |  | ||||||
|       <PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">ZLIB_INTERNAL;%(PreprocessorDefinitions)</PreprocessorDefinitions> |  | ||||||
|       <AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Release|x64'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> |  | ||||||
|       <PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Release|x64'">ZLIB_INTERNAL;%(PreprocessorDefinitions)</PreprocessorDefinitions> |  | ||||||
|     </ClCompile> |  | ||||||
|     <ClCompile Include="..\..\..\zutil.c" /> |  | ||||||
|   </ItemGroup> |  | ||||||
|   <ItemGroup> |  | ||||||
|     <ResourceCompile Include="zlib.rc" /> |  | ||||||
|   </ItemGroup> |  | ||||||
|   <ItemGroup> |  | ||||||
|     <None Include="zlibvc.def" /> |  | ||||||
|   </ItemGroup> |  | ||||||
|   <ItemGroup> |  | ||||||
|     <ClInclude Include="..\..\..\deflate.h" /> |  | ||||||
|     <ClInclude Include="..\..\..\infblock.h" /> |  | ||||||
|     <ClInclude Include="..\..\..\infcodes.h" /> |  | ||||||
|     <ClInclude Include="..\..\..\inffast.h" /> |  | ||||||
|     <ClInclude Include="..\..\..\inftrees.h" /> |  | ||||||
|     <ClInclude Include="..\..\..\infutil.h" /> |  | ||||||
|     <ClInclude Include="..\..\..\zconf.h" /> |  | ||||||
|     <ClInclude Include="..\..\..\zlib.h" /> |  | ||||||
|     <ClInclude Include="..\..\..\zutil.h" /> |  | ||||||
|   </ItemGroup> |  | ||||||
|   <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" /> |  | ||||||
|   <ImportGroup Label="ExtensionTargets"> |  | ||||||
|   </ImportGroup> |  | ||||||
| </Project> |  | ||||||
| @@ -2,8 +2,8 @@ | |||||||
|  |  | ||||||
| #define IDR_VERSION1  1 | #define IDR_VERSION1  1 | ||||||
| IDR_VERSION1	VERSIONINFO	MOVEABLE IMPURE LOADONCALL DISCARDABLE | IDR_VERSION1	VERSIONINFO	MOVEABLE IMPURE LOADONCALL DISCARDABLE | ||||||
|   FILEVERSION	 1.2.7.1,1 |   FILEVERSION	 1,2,8,0 | ||||||
|   PRODUCTVERSION 1.2.7.1,1 |   PRODUCTVERSION 1,2,8,0 | ||||||
|   FILEFLAGSMASK	VS_FFI_FILEFLAGSMASK |   FILEFLAGSMASK	VS_FFI_FILEFLAGSMASK | ||||||
|   FILEFLAGS	0 |   FILEFLAGS	0 | ||||||
|   FILEOS	VOS_DOS_WINDOWS32 |   FILEOS	VOS_DOS_WINDOWS32 | ||||||
| @@ -17,12 +17,12 @@ BEGIN | |||||||
|  |  | ||||||
|     BEGIN |     BEGIN | ||||||
|       VALUE "FileDescription", "zlib data compression and ZIP file I/O library\0" |       VALUE "FileDescription", "zlib data compression and ZIP file I/O library\0" | ||||||
|       VALUE "FileVersion",	"1.2.7.1\0" |       VALUE "FileVersion",	"1.2.8\0" | ||||||
|       VALUE "InternalName",	"zlib\0" |       VALUE "InternalName",	"zlib\0" | ||||||
|       VALUE "OriginalFilename",	"zlib.dll\0" |       VALUE "OriginalFilename",	"zlibwapi.dll\0" | ||||||
|       VALUE "ProductName",	"ZLib.DLL\0" |       VALUE "ProductName",	"ZLib.DLL\0" | ||||||
|       VALUE "Comments","DLL support by Alessandro Iacopetti & Gilles Vollant\0" |       VALUE "Comments","DLL support by Alessandro Iacopetti & Gilles Vollant\0" | ||||||
|       VALUE "LegalCopyright", "(C) 1995-2012 Jean-loup Gailly & Mark Adler\0" |       VALUE "LegalCopyright", "(C) 1995-2013 Jean-loup Gailly & Mark Adler\0" | ||||||
|     END |     END | ||||||
|   END |   END | ||||||
|   BLOCK "VarFileInfo" |   BLOCK "VarFileInfo" | ||||||
|   | |||||||
| @@ -1,7 +1,7 @@ | |||||||
| LIBRARY | LIBRARY | ||||||
| ; zlib data compression and ZIP file I/O library | ; zlib data compression and ZIP file I/O library | ||||||
|  |  | ||||||
| VERSION		1.2.7.1 | VERSION		1.2.8 | ||||||
|  |  | ||||||
| EXPORTS | EXPORTS | ||||||
|         adler32                                  @1 |         adler32                                  @1 | ||||||
| @@ -133,11 +133,11 @@ EXPORTS | |||||||
| ; zlib1 v1.2.6 added: | ; zlib1 v1.2.6 added: | ||||||
|         gzgetc_                                 @161 |         gzgetc_                                 @161 | ||||||
|         inflateResetKeep                        @163 |         inflateResetKeep                        @163 | ||||||
|         deflateResetKeep                        @164 |         deflateResetKeep                        @164 | ||||||
|  |  | ||||||
| ; zlib1 v1.2.7 added: | ; zlib1 v1.2.7 added: | ||||||
|         gzopen_w                                @165 |         gzopen_w                                @165 | ||||||
|  |  | ||||||
| ; zlib1 v1.2.8 added: | ; zlib1 v1.2.8 added: | ||||||
|         inflateGetDictionary                    @166 |         inflateGetDictionary                    @166 | ||||||
|         gzvprintf                               @167 |         gzvprintf                               @167 | ||||||
|   | |||||||
| @@ -52,7 +52,7 @@ | |||||||
| #include "deflate.h" | #include "deflate.h" | ||||||
|  |  | ||||||
| const char deflate_copyright[] = | const char deflate_copyright[] = | ||||||
|    " deflate 1.2.7.1 Copyright 1995-2013 Jean-loup Gailly and Mark Adler "; |    " deflate 1.2.8 Copyright 1995-2013 Jean-loup Gailly and Mark Adler "; | ||||||
| /* | /* | ||||||
|   If you use the zlib library in a product, an acknowledgment is welcome |   If you use the zlib library in a product, an acknowledgment is welcome | ||||||
|   in the documentation of your product. If for some reason you cannot |   in the documentation of your product. If for some reason you cannot | ||||||
|   | |||||||
							
								
								
									
										3
									
								
								gzguts.h
									
									
									
									
									
								
							
							
						
						
									
										3
									
								
								gzguts.h
									
									
									
									
									
								
							| @@ -142,7 +142,8 @@ | |||||||
| #  define DEF_MEM_LEVEL  MAX_MEM_LEVEL | #  define DEF_MEM_LEVEL  MAX_MEM_LEVEL | ||||||
| #endif | #endif | ||||||
|  |  | ||||||
| /* default i/o buffer size -- double this for output when reading */ | /* default i/o buffer size -- double this for output when reading (this and | ||||||
|  |    twice this must be able to fit in an unsigned type) */ | ||||||
| #define GZBUFSIZE 8192 | #define GZBUFSIZE 8192 | ||||||
|  |  | ||||||
| /* gzip modes, also provide a little integrity check on the passed structure */ | /* gzip modes, also provide a little integrity check on the passed structure */ | ||||||
|   | |||||||
| @@ -211,7 +211,7 @@ int ZEXPORT gzwrite(file, buf, len) | |||||||
|  |  | ||||||
|             if (strm->avail_in == 0) |             if (strm->avail_in == 0) | ||||||
|                 strm->next_in = state->in; |                 strm->next_in = state->in; | ||||||
|             have = strm->next_in + strm->avail_in - state->in; |             have = (unsigned)((strm->next_in + strm->avail_in) - state->in); | ||||||
|             copy = state->size - have; |             copy = state->size - have; | ||||||
|             if (copy > len) |             if (copy > len) | ||||||
|                 copy = len; |                 copy = len; | ||||||
| @@ -273,7 +273,7 @@ int ZEXPORT gzputc(file, c) | |||||||
|     if (state->size) { |     if (state->size) { | ||||||
|         if (strm->avail_in == 0) |         if (strm->avail_in == 0) | ||||||
|             strm->next_in = state->in; |             strm->next_in = state->in; | ||||||
|         have = strm->next_in + strm->avail_in - state->in; |         have = (unsigned)((strm->next_in + strm->avail_in) - state->in); | ||||||
|         if (have < state->size) { |         if (have < state->size) { | ||||||
|             state->in[have] = c; |             state->in[have] = c; | ||||||
|             strm->avail_in++; |             strm->avail_in++; | ||||||
|   | |||||||
| @@ -9,7 +9,7 @@ | |||||||
| #define MAXBITS 15 | #define MAXBITS 15 | ||||||
|  |  | ||||||
| const char inflate_copyright[] = | const char inflate_copyright[] = | ||||||
|    " inflate 1.2.7.1 Copyright 1995-2013 Mark Adler "; |    " inflate 1.2.8 Copyright 1995-2013 Mark Adler "; | ||||||
| /* | /* | ||||||
|   If you use the zlib library in a product, an acknowledgment is welcome |   If you use the zlib library in a product, an acknowledgment is welcome | ||||||
|   in the documentation of your product. If for some reason you cannot |   in the documentation of your product. If for some reason you cannot | ||||||
| @@ -62,7 +62,7 @@ unsigned short FAR *work; | |||||||
|         35, 43, 51, 59, 67, 83, 99, 115, 131, 163, 195, 227, 258, 0, 0}; |         35, 43, 51, 59, 67, 83, 99, 115, 131, 163, 195, 227, 258, 0, 0}; | ||||||
|     static const unsigned short lext[31] = { /* Length codes 257..285 extra */ |     static const unsigned short lext[31] = { /* Length codes 257..285 extra */ | ||||||
|         16, 16, 16, 16, 16, 16, 16, 16, 17, 17, 17, 17, 18, 18, 18, 18, |         16, 16, 16, 16, 16, 16, 16, 16, 17, 17, 17, 17, 18, 18, 18, 18, | ||||||
|         19, 19, 19, 19, 20, 20, 20, 20, 21, 21, 21, 21, 16, 79, 204}; |         19, 19, 19, 19, 20, 20, 20, 20, 21, 21, 21, 21, 16, 72, 78}; | ||||||
|     static const unsigned short dbase[32] = { /* Distance codes 0..29 base */ |     static const unsigned short dbase[32] = { /* Distance codes 0..29 base */ | ||||||
|         1, 2, 3, 4, 5, 7, 9, 13, 17, 25, 33, 49, 65, 97, 129, 193, |         1, 2, 3, 4, 5, 7, 9, 13, 17, 25, 33, 49, 65, 97, 129, 193, | ||||||
|         257, 385, 513, 769, 1025, 1537, 2049, 3073, 4097, 6145, |         257, 385, 513, 769, 1025, 1537, 2049, 3073, 4097, 6145, | ||||||
|   | |||||||
| @@ -25,10 +25,10 @@ | |||||||
|       <QPG:Files> |       <QPG:Files> | ||||||
|          <QPG:Add file="../zconf.h" install="/opt/include/" user="root:sys" permission="644"/> |          <QPG:Add file="../zconf.h" install="/opt/include/" user="root:sys" permission="644"/> | ||||||
|          <QPG:Add file="../zlib.h" install="/opt/include/" user="root:sys" permission="644"/> |          <QPG:Add file="../zlib.h" install="/opt/include/" user="root:sys" permission="644"/> | ||||||
|          <QPG:Add file="../libz.so.1.2.7.1" install="/opt/lib/" user="root:bin" permission="644"/> |          <QPG:Add file="../libz.so.1.2.8" install="/opt/lib/" user="root:bin" permission="644"/> | ||||||
|          <QPG:Add file="libz.so" install="/opt/lib/" component="dev" filetype="symlink" linkto="libz.so.1.2.7.1"/> |          <QPG:Add file="libz.so" install="/opt/lib/" component="dev" filetype="symlink" linkto="libz.so.1.2.8"/> | ||||||
|          <QPG:Add file="libz.so.1" install="/opt/lib/" filetype="symlink" linkto="libz.so.1.2.7.1"/> |          <QPG:Add file="libz.so.1" install="/opt/lib/" filetype="symlink" linkto="libz.so.1.2.8"/> | ||||||
|          <QPG:Add file="../libz.so.1.2.7.1" install="/opt/lib/" component="slib"/> |          <QPG:Add file="../libz.so.1.2.8" install="/opt/lib/" component="slib"/> | ||||||
|       </QPG:Files> |       </QPG:Files> | ||||||
|  |  | ||||||
|       <QPG:PackageFilter> |       <QPG:PackageFilter> | ||||||
| @@ -63,7 +63,7 @@ | |||||||
|             </QPM:ProductDescription> |             </QPM:ProductDescription> | ||||||
|  |  | ||||||
|             <QPM:ReleaseDescription> |             <QPM:ReleaseDescription> | ||||||
|                <QPM:ReleaseVersion>1.2.7.1</QPM:ReleaseVersion> |                <QPM:ReleaseVersion>1.2.8</QPM:ReleaseVersion> | ||||||
|                <QPM:ReleaseUrgency>Medium</QPM:ReleaseUrgency> |                <QPM:ReleaseUrgency>Medium</QPM:ReleaseUrgency> | ||||||
|                <QPM:ReleaseStability>Stable</QPM:ReleaseStability> |                <QPM:ReleaseStability>Stable</QPM:ReleaseStability> | ||||||
|                <QPM:ReleaseNoteMinor></QPM:ReleaseNoteMinor> |                <QPM:ReleaseNoteMinor></QPM:ReleaseNoteMinor> | ||||||
|   | |||||||
| @@ -1,6 +1,6 @@ | |||||||
| <?xml version="1.0" ?> | <?xml version="1.0" ?> | ||||||
| <package name="zlib" version="1.2.7.1"> | <package name="zlib" version="1.2.8"> | ||||||
|     <library name="zlib" dlversion="1.2.7.1" dlname="z"> |     <library name="zlib" dlversion="1.2.8" dlname="z"> | ||||||
| 	<property name="description"> zip compression library </property> | 	<property name="description"> zip compression library </property> | ||||||
| 	<property name="include-target-dir" value="$(@PACKAGE/install-includedir)" /> | 	<property name="include-target-dir" value="$(@PACKAGE/install-includedir)" /> | ||||||
|  |  | ||||||
|   | |||||||
| @@ -40,7 +40,7 @@ OBJA = | |||||||
|  |  | ||||||
| # targets | # targets | ||||||
| all: $(STATICLIB) $(SHAREDLIB) $(IMPLIB) \ | all: $(STATICLIB) $(SHAREDLIB) $(IMPLIB) \ | ||||||
|      $example.exe minigzip.exe example_d.exe minigzip_d.exe |      example.exe minigzip.exe example_d.exe minigzip_d.exe | ||||||
|  |  | ||||||
| $(STATICLIB): $(OBJS) $(OBJA) | $(STATICLIB): $(OBJS) $(OBJA) | ||||||
| 	$(AR) $(ARFLAGS) -out:$@ $(OBJS) $(OBJA) | 	$(AR) $(ARFLAGS) -out:$@ $(OBJS) $(OBJA) | ||||||
|   | |||||||
| @@ -1,6 +1,6 @@ | |||||||
| ZLIB DATA COMPRESSION LIBRARY | ZLIB DATA COMPRESSION LIBRARY | ||||||
|  |  | ||||||
| zlib 1.2.7.1 is a general purpose data compression library.  All the code is | zlib 1.2.8 is a general purpose data compression library.  All the code is | ||||||
| thread safe.  The data format used by the zlib library is described by RFCs | thread safe.  The data format used by the zlib library is described by RFCs | ||||||
| (Request for Comments) 1950 to 1952 in the files | (Request for Comments) 1950 to 1952 in the files | ||||||
| http://www.ietf.org/rfc/rfc1950.txt (zlib format), rfc1951.txt (deflate format) | http://www.ietf.org/rfc/rfc1950.txt (zlib format), rfc1951.txt (deflate format) | ||||||
| @@ -22,7 +22,7 @@ before asking for help. | |||||||
|  |  | ||||||
| Manifest: | Manifest: | ||||||
|  |  | ||||||
| The package zlib-1.2.7.1-win32-x86.zip will contain the following files: | The package zlib-1.2.8-win32-x86.zip will contain the following files: | ||||||
|  |  | ||||||
|   README-WIN32.txt This document |   README-WIN32.txt This document | ||||||
|   ChangeLog        Changes since previous zlib packages |   ChangeLog        Changes since previous zlib packages | ||||||
|   | |||||||
| @@ -26,7 +26,7 @@ BEGIN | |||||||
|       VALUE "FileDescription",	"zlib data compression library\0" |       VALUE "FileDescription",	"zlib data compression library\0" | ||||||
|       VALUE "FileVersion",	ZLIB_VERSION "\0" |       VALUE "FileVersion",	ZLIB_VERSION "\0" | ||||||
|       VALUE "InternalName",	"zlib1.dll\0" |       VALUE "InternalName",	"zlib1.dll\0" | ||||||
|       VALUE "LegalCopyright",	"(C) 1995-2012 Jean-loup Gailly & Mark Adler\0" |       VALUE "LegalCopyright",	"(C) 1995-2013 Jean-loup Gailly & Mark Adler\0" | ||||||
|       VALUE "OriginalFilename",	"zlib1.dll\0" |       VALUE "OriginalFilename",	"zlib1.dll\0" | ||||||
|       VALUE "ProductName",	"zlib\0" |       VALUE "ProductName",	"zlib\0" | ||||||
|       VALUE "ProductVersion",	ZLIB_VERSION "\0" |       VALUE "ProductVersion",	ZLIB_VERSION "\0" | ||||||
|   | |||||||
							
								
								
									
										8
									
								
								zconf.h
									
									
									
									
									
								
							
							
						
						
									
										8
									
								
								zconf.h
									
									
									
									
									
								
							| @@ -218,7 +218,7 @@ | |||||||
| #  endif | #  endif | ||||||
| #endif | #endif | ||||||
|  |  | ||||||
| #if ( defined(ZLIB_CONST) || defined(__cplusplus) ) && !defined(z_const) | #if defined(ZLIB_CONST) && !defined(z_const) | ||||||
| #  define z_const const | #  define z_const const | ||||||
| #else | #else | ||||||
| #  define z_const | #  define z_const | ||||||
| @@ -393,11 +393,11 @@ typedef uLong FAR uLongf; | |||||||
|  |  | ||||||
| #if !defined(Z_U4) && !defined(Z_SOLO) && defined(STDC) | #if !defined(Z_U4) && !defined(Z_SOLO) && defined(STDC) | ||||||
| #  include <limits.h> | #  include <limits.h> | ||||||
| #  if (UINT_MAX == 4294967295) | #  if (UINT_MAX == 0xffffffffUL) | ||||||
| #    define Z_U4 unsigned | #    define Z_U4 unsigned | ||||||
| #  elif (ULONG_MAX == 4294967295) | #  elif (ULONG_MAX == 0xffffffffUL) | ||||||
| #    define Z_U4 unsigned long | #    define Z_U4 unsigned long | ||||||
| #  elif (USHRT_MAX == 4294967295) | #  elif (USHRT_MAX == 0xffffffffUL) | ||||||
| #    define Z_U4 unsigned short | #    define Z_U4 unsigned short | ||||||
| #  endif | #  endif | ||||||
| #endif | #endif | ||||||
|   | |||||||
| @@ -220,7 +220,7 @@ | |||||||
| #  endif | #  endif | ||||||
| #endif | #endif | ||||||
|  |  | ||||||
| #if ( defined(ZLIB_CONST) || defined(__cplusplus) ) && !defined(z_const) | #if defined(ZLIB_CONST) && !defined(z_const) | ||||||
| #  define z_const const | #  define z_const const | ||||||
| #else | #else | ||||||
| #  define z_const | #  define z_const | ||||||
| @@ -395,11 +395,11 @@ typedef uLong FAR uLongf; | |||||||
|  |  | ||||||
| #if !defined(Z_U4) && !defined(Z_SOLO) && defined(STDC) | #if !defined(Z_U4) && !defined(Z_SOLO) && defined(STDC) | ||||||
| #  include <limits.h> | #  include <limits.h> | ||||||
| #  if (UINT_MAX == 4294967295) | #  if (UINT_MAX == 0xffffffffUL) | ||||||
| #    define Z_U4 unsigned | #    define Z_U4 unsigned | ||||||
| #  elif (ULONG_MAX == 4294967295) | #  elif (ULONG_MAX == 0xffffffffUL) | ||||||
| #    define Z_U4 unsigned long | #    define Z_U4 unsigned long | ||||||
| #  elif (USHRT_MAX == 4294967295) | #  elif (USHRT_MAX == 0xffffffffUL) | ||||||
| #    define Z_U4 unsigned short | #    define Z_U4 unsigned short | ||||||
| #  endif | #  endif | ||||||
| #endif | #endif | ||||||
|   | |||||||
| @@ -218,7 +218,7 @@ | |||||||
| #  endif | #  endif | ||||||
| #endif | #endif | ||||||
|  |  | ||||||
| #if ( defined(ZLIB_CONST) || defined(__cplusplus) ) && !defined(z_const) | #if defined(ZLIB_CONST) && !defined(z_const) | ||||||
| #  define z_const const | #  define z_const const | ||||||
| #else | #else | ||||||
| #  define z_const | #  define z_const | ||||||
| @@ -393,11 +393,11 @@ typedef uLong FAR uLongf; | |||||||
|  |  | ||||||
| #if !defined(Z_U4) && !defined(Z_SOLO) && defined(STDC) | #if !defined(Z_U4) && !defined(Z_SOLO) && defined(STDC) | ||||||
| #  include <limits.h> | #  include <limits.h> | ||||||
| #  if (UINT_MAX == 4294967295) | #  if (UINT_MAX == 0xffffffffUL) | ||||||
| #    define Z_U4 unsigned | #    define Z_U4 unsigned | ||||||
| #  elif (ULONG_MAX == 4294967295) | #  elif (ULONG_MAX == 0xffffffffUL) | ||||||
| #    define Z_U4 unsigned long | #    define Z_U4 unsigned long | ||||||
| #  elif (USHRT_MAX == 4294967295) | #  elif (USHRT_MAX == 0xffffffffUL) | ||||||
| #    define Z_U4 unsigned short | #    define Z_U4 unsigned short | ||||||
| #  endif | #  endif | ||||||
| #endif | #endif | ||||||
|   | |||||||
							
								
								
									
										4
									
								
								zlib.3
									
									
									
									
									
								
							
							
						
						
									
										4
									
								
								zlib.3
									
									
									
									
									
								
							| @@ -1,4 +1,4 @@ | |||||||
| .TH ZLIB 3 "24 Mar 2012" | .TH ZLIB 3 "28 Apr 2013" | ||||||
| .SH NAME | .SH NAME | ||||||
| zlib \- compression/decompression library | zlib \- compression/decompression library | ||||||
| .SH SYNOPSIS | .SH SYNOPSIS | ||||||
| @@ -125,7 +125,7 @@ before asking for help. | |||||||
| Send questions and/or comments to zlib@gzip.org, | Send questions and/or comments to zlib@gzip.org, | ||||||
| or (for the Windows DLL version) to Gilles Vollant (info@winimage.com). | or (for the Windows DLL version) to Gilles Vollant (info@winimage.com). | ||||||
| .SH AUTHORS | .SH AUTHORS | ||||||
| Version 1.2.7.1 | Version 1.2.8 | ||||||
| Copyright (C) 1995-2013 Jean-loup Gailly (jloup@gzip.org) | Copyright (C) 1995-2013 Jean-loup Gailly (jloup@gzip.org) | ||||||
| and Mark Adler (madler@alumni.caltech.edu). | and Mark Adler (madler@alumni.caltech.edu). | ||||||
| .LP | .LP | ||||||
|   | |||||||
							
								
								
									
										
											BIN
										
									
								
								zlib.3.pdf
									
									
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								zlib.3.pdf
									
									
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										12
									
								
								zlib.h
									
									
									
									
									
								
							
							
						
						
									
										12
									
								
								zlib.h
									
									
									
									
									
								
							| @@ -1,5 +1,5 @@ | |||||||
| /* zlib.h -- interface of the 'zlib' general purpose compression library | /* zlib.h -- interface of the 'zlib' general purpose compression library | ||||||
|   version 1.2.7.1, March 24th, 2013 |   version 1.2.8, April 28th, 2013 | ||||||
|  |  | ||||||
|   Copyright (C) 1995-2013 Jean-loup Gailly and Mark Adler |   Copyright (C) 1995-2013 Jean-loup Gailly and Mark Adler | ||||||
|  |  | ||||||
| @@ -37,12 +37,12 @@ | |||||||
| extern "C" { | extern "C" { | ||||||
| #endif | #endif | ||||||
|  |  | ||||||
| #define ZLIB_VERSION "1.2.7.1" | #define ZLIB_VERSION "1.2.8" | ||||||
| #define ZLIB_VERNUM 0x1271 | #define ZLIB_VERNUM 0x1280 | ||||||
| #define ZLIB_VER_MAJOR 1 | #define ZLIB_VER_MAJOR 1 | ||||||
| #define ZLIB_VER_MINOR 2 | #define ZLIB_VER_MINOR 2 | ||||||
| #define ZLIB_VER_REVISION 7 | #define ZLIB_VER_REVISION 8 | ||||||
| #define ZLIB_VER_SUBREVISION 1 | #define ZLIB_VER_SUBREVISION 0 | ||||||
|  |  | ||||||
| /* | /* | ||||||
|     The 'zlib' compression library provides in-memory compression and |     The 'zlib' compression library provides in-memory compression and | ||||||
| @@ -861,7 +861,7 @@ ZEXTERN int ZEXPORT inflateSync OF((z_streamp strm)); | |||||||
|    available input is skipped.  No output is provided. |    available input is skipped.  No output is provided. | ||||||
|  |  | ||||||
|      inflateSync searches for a 00 00 FF FF pattern in the compressed data. |      inflateSync searches for a 00 00 FF FF pattern in the compressed data. | ||||||
|    All full flush points have this pattern, but not all occurences of this |    All full flush points have this pattern, but not all occurrences of this | ||||||
|    pattern are full flush points. |    pattern are full flush points. | ||||||
|  |  | ||||||
|      inflateSync returns Z_OK if a possible full flush point has been found, |      inflateSync returns Z_OK if a possible full flush point has been found, | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user