readme.txt 3.0 KB
Newer Older
S
shuaiyutao 已提交
1
Building instructions for the DLL versions of Zlib 1.2.12
M
Mark Adler 已提交
2
========================================================
M
Mark Adler 已提交
3

M
Mark Adler 已提交
4
This directory contains projects that build zlib and minizip using
5
Microsoft Visual C++ 9.0/10.0.
M
Mark Adler 已提交
6

M
Mark Adler 已提交
7 8 9
You don't need to build these projects yourself. You can download the
binaries from:
  http://www.winimage.com/zLibDll
M
Mark Adler 已提交
10

M
Mark Adler 已提交
11
More information can be found at this site.
M
Mark Adler 已提交
12

M
Mark Adler 已提交
13

M
Mark Adler 已提交
14

M
Mark Adler 已提交
15 16 17 18


Build instructions for Visual Studio 2008 (32 bits or 64 bits)
--------------------------------------------------------------
19
- Decompress current zlib, including all contrib/* files
20 21 22 23
- Compile assembly code (with Visual Studio Command Prompt) by running:
   bld_ml64.bat (in contrib\masmx64)
   bld_ml32.bat (in contrib\masmx86)
- Open contrib\vstudio\vc9\zlibvc.sln with Microsoft Visual C++ 2008
M
Mark Adler 已提交
24
- Or run: vcbuild /rebuild contrib\vstudio\vc9\zlibvc.sln "Release|Win32"
M
Mark Adler 已提交
25 26 27

Build instructions for Visual Studio 2010 (32 bits or 64 bits)
--------------------------------------------------------------
28
- Decompress current zlib, including all contrib/* files
29
- Open contrib\vstudio\vc10\zlibvc.sln with Microsoft Visual C++ 2010
M
Mark Adler 已提交
30

31 32
Build instructions for Visual Studio 2012 (32 bits or 64 bits)
--------------------------------------------------------------
33
- Decompress current zlib, including all contrib/* files
34 35
- Open contrib\vstudio\vc11\zlibvc.sln with Microsoft Visual C++ 2012

36 37 38 39 40 41 42 43 44 45
Build instructions for Visual Studio 2013 (32 bits or 64 bits)
--------------------------------------------------------------
- Decompress current zlib, including all contrib/* files
- Open contrib\vstudio\vc12\zlibvc.sln with Microsoft Visual C++ 2013

Build instructions for Visual Studio 2015 (32 bits or 64 bits)
--------------------------------------------------------------
- Decompress current zlib, including all contrib/* files
- Open contrib\vstudio\vc14\zlibvc.sln with Microsoft Visual C++ 2015

M
Mark Adler 已提交
46

M
Mark Adler 已提交
47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71
Important
---------
- To use zlibwapi.dll in your application, you must define the
  macro ZLIB_WINAPI when compiling your application's source files.


Additional notes
----------------
- This DLL, named zlibwapi.dll, is compatible to the old zlib.dll built
  by Gilles Vollant from the zlib 1.1.x sources, and distributed at
    http://www.winimage.com/zLibDll
  It uses the WINAPI calling convention for the exported functions, and
  includes the minizip functionality. If your application needs that
  particular build of zlib.dll, you can rename zlibwapi.dll to zlib.dll.

- The new DLL was renamed because there exist several incompatible
  versions of zlib.dll on the Internet.

- There is also an official DLL build of zlib, named zlib1.dll. This one
  is exporting the functions using the CDECL convention. See the file
  win32\DLL_FAQ.txt found in this zlib distribution.

- There used to be a ZLIB_DLL macro in zlib 1.1.x, but now this symbol
  has a slightly different effect. To avoid compatibility problems, do
  not define it here.
M
Mark Adler 已提交
72 73 74 75


Gilles Vollant
info@winimage.com
76 77

Visual Studio 2013 and 2015 Projects from Sean Hunt
78
seandhunt_7@yahoo.com