kusano fc6ab3
kusano fc6ab3
            Frequently Asked Questions about ZLIB1.DLL
kusano fc6ab3
kusano fc6ab3
kusano fc6ab3
This document describes the design, the rationale, and the usage
kusano fc6ab3
of the official DLL build of zlib, named ZLIB1.DLL.  If you have
kusano fc6ab3
general questions about zlib, you should see the file "FAQ" found
kusano fc6ab3
in the zlib distribution, or at the following location:
kusano fc6ab3
  http://www.gzip.org/zlib/zlib_faq.html
kusano fc6ab3
kusano fc6ab3
kusano fc6ab3
 1. What is ZLIB1.DLL, and how can I get it?
kusano fc6ab3
kusano fc6ab3
  - ZLIB1.DLL is the official build of zlib as a DLL.
kusano fc6ab3
    (Please remark the character '1' in the name.)
kusano fc6ab3
kusano fc6ab3
    Pointers to a precompiled ZLIB1.DLL can be found in the zlib
kusano fc6ab3
    web site at:
kusano fc6ab3
      http://www.zlib.net/
kusano fc6ab3
kusano fc6ab3
    Applications that link to ZLIB1.DLL can rely on the following
kusano fc6ab3
    specification:
kusano fc6ab3
kusano fc6ab3
    * The exported symbols are exclusively defined in the source
kusano fc6ab3
      files "zlib.h" and "zlib.def", found in an official zlib
kusano fc6ab3
      source distribution.
kusano fc6ab3
    * The symbols are exported by name, not by ordinal.
kusano fc6ab3
    * The exported names are undecorated.
kusano fc6ab3
    * The calling convention of functions is "C" (CDECL).
kusano fc6ab3
    * The ZLIB1.DLL binary is linked to MSVCRT.DLL.
kusano fc6ab3
kusano fc6ab3
    The archive in which ZLIB1.DLL is bundled contains compiled
kusano fc6ab3
    test programs that must run with a valid build of ZLIB1.DLL.
kusano fc6ab3
    It is recommended to download the prebuilt DLL from the zlib
kusano fc6ab3
    web site, instead of building it yourself, to avoid potential
kusano fc6ab3
    incompatibilities that could be introduced by your compiler
kusano fc6ab3
    and build settings.  If you do build the DLL yourself, please
kusano fc6ab3
    make sure that it complies with all the above requirements,
kusano fc6ab3
    and it runs with the precompiled test programs, bundled with
kusano fc6ab3
    the original ZLIB1.DLL distribution.
kusano fc6ab3
kusano fc6ab3
    If, for any reason, you need to build an incompatible DLL,
kusano fc6ab3
    please use a different file name.
kusano fc6ab3
kusano fc6ab3
kusano fc6ab3
 2. Why did you change the name of the DLL to ZLIB1.DLL?
kusano fc6ab3
    What happened to the old ZLIB.DLL?
kusano fc6ab3
kusano fc6ab3
  - The old ZLIB.DLL, built from zlib-1.1.4 or earlier, required
kusano fc6ab3
    compilation settings that were incompatible to those used by
kusano fc6ab3
    a static build.  The DLL settings were supposed to be enabled
kusano fc6ab3
    by defining the macro ZLIB_DLL, before including "zlib.h".
kusano fc6ab3
    Incorrect handling of this macro was silently accepted at
kusano fc6ab3
    build time, resulting in two major problems:
kusano fc6ab3
kusano fc6ab3
    * ZLIB_DLL was missing from the old makefile.  When building
kusano fc6ab3
      the DLL, not all people added it to the build options.  In
kusano fc6ab3
      consequence, incompatible incarnations of ZLIB.DLL started
kusano fc6ab3
      to circulate around the net.
kusano fc6ab3
kusano fc6ab3
    * When switching from using the static library to using the
kusano fc6ab3
      DLL, applications had to define the ZLIB_DLL macro and
kusano fc6ab3
      to recompile all the sources that contained calls to zlib
kusano fc6ab3
      functions.  Failure to do so resulted in creating binaries
kusano fc6ab3
      that were unable to run with the official ZLIB.DLL build.
kusano fc6ab3
kusano fc6ab3
    The only possible solution that we could foresee was to make
kusano fc6ab3
    a binary-incompatible change in the DLL interface, in order to
kusano fc6ab3
    remove the dependency on the ZLIB_DLL macro, and to release
kusano fc6ab3
    the new DLL under a different name.
kusano fc6ab3
kusano fc6ab3
    We chose the name ZLIB1.DLL, where '1' indicates the major
kusano fc6ab3
    zlib version number.  We hope that we will not have to break
kusano fc6ab3
    the binary compatibility again, at least not as long as the
kusano fc6ab3
    zlib-1.x series will last.
kusano fc6ab3
kusano fc6ab3
    There is still a ZLIB_DLL macro, that can trigger a more
kusano fc6ab3
    efficient build and use of the DLL, but compatibility no
kusano fc6ab3
    longer dependents on it.
kusano fc6ab3
kusano fc6ab3
kusano fc6ab3
 3. Can I build ZLIB.DLL from the new zlib sources, and replace
kusano fc6ab3
    an old ZLIB.DLL, that was built from zlib-1.1.4 or earlier?
kusano fc6ab3
kusano fc6ab3
  - In principle, you can do it by assigning calling convention
kusano fc6ab3
    keywords to the macros ZEXPORT and ZEXPORTVA.  In practice,
kusano fc6ab3
    it depends on what you mean by "an old ZLIB.DLL", because the
kusano fc6ab3
    old DLL exists in several mutually-incompatible versions.
kusano fc6ab3
    You have to find out first what kind of calling convention is
kusano fc6ab3
    being used in your particular ZLIB.DLL build, and to use the
kusano fc6ab3
    same one in the new build.  If you don't know what this is all
kusano fc6ab3
    about, you might be better off if you would just leave the old
kusano fc6ab3
    DLL intact.
kusano fc6ab3
kusano fc6ab3
kusano fc6ab3
 4. Can I compile my application using the new zlib interface, and
kusano fc6ab3
    link it to an old ZLIB.DLL, that was built from zlib-1.1.4 or
kusano fc6ab3
    earlier?
kusano fc6ab3
kusano fc6ab3
  - The official answer is "no"; the real answer depends again on
kusano fc6ab3
    what kind of ZLIB.DLL you have.  Even if you are lucky, this
kusano fc6ab3
    course of action is unreliable.
kusano fc6ab3
kusano fc6ab3
    If you rebuild your application and you intend to use a newer
kusano fc6ab3
    version of zlib (post- 1.1.4), it is strongly recommended to
kusano fc6ab3
    link it to the new ZLIB1.DLL.
kusano fc6ab3
kusano fc6ab3
kusano fc6ab3
 5. Why are the zlib symbols exported by name, and not by ordinal?
kusano fc6ab3
kusano fc6ab3
  - Although exporting symbols by ordinal is a little faster, it
kusano fc6ab3
    is risky.  Any single glitch in the maintenance or use of the
kusano fc6ab3
    DEF file that contains the ordinals can result in incompatible
kusano fc6ab3
    builds and frustrating crashes.  Simply put, the benefits of
kusano fc6ab3
    exporting symbols by ordinal do not justify the risks.
kusano fc6ab3
kusano fc6ab3
    Technically, it should be possible to maintain ordinals in
kusano fc6ab3
    the DEF file, and still export the symbols by name.  Ordinals
kusano fc6ab3
    exist in every DLL, and even if the dynamic linking performed
kusano fc6ab3
    at the DLL startup is searching for names, ordinals serve as
kusano fc6ab3
    hints, for a faster name lookup.  However, if the DEF file
kusano fc6ab3
    contains ordinals, the Microsoft linker automatically builds
kusano fc6ab3
    an implib that will cause the executables linked to it to use
kusano fc6ab3
    those ordinals, and not the names.  It is interesting to
kusano fc6ab3
    notice that the GNU linker for Win32 does not suffer from this
kusano fc6ab3
    problem.
kusano fc6ab3
kusano fc6ab3
    It is possible to avoid the DEF file if the exported symbols
kusano fc6ab3
    are accompanied by a "__declspec(dllexport)" attribute in the
kusano fc6ab3
    source files.  You can do this in zlib by predefining the
kusano fc6ab3
    ZLIB_DLL macro.
kusano fc6ab3
kusano fc6ab3
kusano fc6ab3
 6. I see that the ZLIB1.DLL functions use the "C" (CDECL) calling
kusano fc6ab3
    convention.  Why not use the STDCALL convention?
kusano fc6ab3
    STDCALL is the standard convention in Win32, and I need it in
kusano fc6ab3
    my Visual Basic project!
kusano fc6ab3
kusano fc6ab3
    (For readability, we use CDECL to refer to the convention
kusano fc6ab3
     triggered by the "__cdecl" keyword, STDCALL to refer to
kusano fc6ab3
     the convention triggered by "__stdcall", and FASTCALL to
kusano fc6ab3
     refer to the convention triggered by "__fastcall".)
kusano fc6ab3
kusano fc6ab3
  - Most of the native Windows API functions (without varargs) use
kusano fc6ab3
    indeed the WINAPI convention (which translates to STDCALL in
kusano fc6ab3
    Win32), but the standard C functions use CDECL.  If a user
kusano fc6ab3
    application is intrinsically tied to the Windows API (e.g.
kusano fc6ab3
    it calls native Windows API functions such as CreateFile()),
kusano fc6ab3
    sometimes it makes sense to decorate its own functions with
kusano fc6ab3
    WINAPI.  But if ANSI C or POSIX portability is a goal (e.g.
kusano fc6ab3
    it calls standard C functions such as fopen()), it is not a
kusano fc6ab3
    sound decision to request the inclusion of <windows.h>, or to</windows.h>
kusano fc6ab3
    use non-ANSI constructs, for the sole purpose to make the user
kusano fc6ab3
    functions STDCALL-able.
kusano fc6ab3
kusano fc6ab3
    The functionality offered by zlib is not in the category of
kusano fc6ab3
    "Windows functionality", but is more like "C functionality".
kusano fc6ab3
kusano fc6ab3
    Technically, STDCALL is not bad; in fact, it is slightly
kusano fc6ab3
    faster than CDECL, and it works with variable-argument
kusano fc6ab3
    functions, just like CDECL.  It is unfortunate that, in spite
kusano fc6ab3
    of using STDCALL in the Windows API, it is not the default
kusano fc6ab3
    convention used by the C compilers that run under Windows.
kusano fc6ab3
    The roots of the problem reside deep inside the unsafety of
kusano fc6ab3
    the K&R-style function prototypes, where the argument types
kusano fc6ab3
    are not specified; but that is another story for another day.
kusano fc6ab3
kusano fc6ab3
    The remaining fact is that CDECL is the default convention.
kusano fc6ab3
    Even if an explicit convention is hard-coded into the function
kusano fc6ab3
    prototypes inside C headers, problems may appear.  The
kusano fc6ab3
    necessity to expose the convention in users' callbacks is one
kusano fc6ab3
    of these problems.
kusano fc6ab3
kusano fc6ab3
    The calling convention issues are also important when using
kusano fc6ab3
    zlib in other programming languages.  Some of them, like Ada
kusano fc6ab3
    (GNAT) and Fortran (GNU G77), have C bindings implemented
kusano fc6ab3
    initially on Unix, and relying on the C calling convention.
kusano fc6ab3
    On the other hand, the pre- .NET versions of Microsoft Visual
kusano fc6ab3
    Basic require STDCALL, while Borland Delphi prefers, although
kusano fc6ab3
    it does not require, FASTCALL.
kusano fc6ab3
kusano fc6ab3
    In fairness to all possible uses of zlib outside the C
kusano fc6ab3
    programming language, we choose the default "C" convention.
kusano fc6ab3
    Anyone interested in different bindings or conventions is
kusano fc6ab3
    encouraged to maintain specialized projects.  The "contrib/"
kusano fc6ab3
    directory from the zlib distribution already holds a couple
kusano fc6ab3
    of foreign bindings, such as Ada, C++, and Delphi.
kusano fc6ab3
kusano fc6ab3
kusano fc6ab3
 7. I need a DLL for my Visual Basic project.  What can I do?
kusano fc6ab3
kusano fc6ab3
  - Define the ZLIB_WINAPI macro before including "zlib.h", when
kusano fc6ab3
    building both the DLL and the user application (except that
kusano fc6ab3
    you don't need to define anything when using the DLL in Visual
kusano fc6ab3
    Basic).  The ZLIB_WINAPI macro will switch on the WINAPI
kusano fc6ab3
    (STDCALL) convention.  The name of this DLL must be different
kusano fc6ab3
    than the official ZLIB1.DLL.
kusano fc6ab3
kusano fc6ab3
    Gilles Vollant has contributed a build named ZLIBWAPI.DLL,
kusano fc6ab3
    with the ZLIB_WINAPI macro turned on, and with the minizip
kusano fc6ab3
    functionality built in.  For more information, please read
kusano fc6ab3
    the notes inside "contrib/vstudio/readme.txt", found in the
kusano fc6ab3
    zlib distribution.
kusano fc6ab3
kusano fc6ab3
kusano fc6ab3
 8. I need to use zlib in my Microsoft .NET project.  What can I
kusano fc6ab3
    do?
kusano fc6ab3
kusano fc6ab3
  - Henrik Ravn has contributed a .NET wrapper around zlib.  Look
kusano fc6ab3
    into contrib/dotzlib/, inside the zlib distribution.
kusano fc6ab3
kusano fc6ab3
kusano fc6ab3
 9. If my application uses ZLIB1.DLL, should I link it to
kusano fc6ab3
    MSVCRT.DLL?  Why?
kusano fc6ab3
kusano fc6ab3
  - It is not required, but it is recommended to link your
kusano fc6ab3
    application to MSVCRT.DLL, if it uses ZLIB1.DLL.
kusano fc6ab3
kusano fc6ab3
    The executables (.EXE, .DLL, etc.) that are involved in the
kusano fc6ab3
    same process and are using the C run-time library (i.e. they
kusano fc6ab3
    are calling standard C functions), must link to the same
kusano fc6ab3
    library.  There are several libraries in the Win32 system:
kusano fc6ab3
    CRTDLL.DLL, MSVCRT.DLL, the static C libraries, etc.
kusano fc6ab3
    Since ZLIB1.DLL is linked to MSVCRT.DLL, the executables that
kusano fc6ab3
    depend on it should also be linked to MSVCRT.DLL.
kusano fc6ab3
kusano fc6ab3
kusano fc6ab3
10. Why are you saying that ZLIB1.DLL and my application should
kusano fc6ab3
    be linked to the same C run-time (CRT) library?  I linked my
kusano fc6ab3
    application and my DLLs to different C libraries (e.g. my
kusano fc6ab3
    application to a static library, and my DLLs to MSVCRT.DLL),
kusano fc6ab3
    and everything works fine.
kusano fc6ab3
kusano fc6ab3
  - If a user library invokes only pure Win32 API (accessible via
kusano fc6ab3
    <windows.h> and the related headers), its DLL build will work</windows.h>
kusano fc6ab3
    in any context.  But if this library invokes standard C API,
kusano fc6ab3
    things get more complicated.
kusano fc6ab3
kusano fc6ab3
    There is a single Win32 library in a Win32 system.  Every
kusano fc6ab3
    function in this library resides in a single DLL module, that
kusano fc6ab3
    is safe to call from anywhere.  On the other hand, there are
kusano fc6ab3
    multiple versions of the C library, and each of them has its
kusano fc6ab3
    own separate internal state.  Standalone executables and user
kusano fc6ab3
    DLLs that call standard C functions must link to a C run-time
kusano fc6ab3
    (CRT) library, be it static or shared (DLL).  Intermixing
kusano fc6ab3
    occurs when an executable (not necessarily standalone) and a
kusano fc6ab3
    DLL are linked to different CRTs, and both are running in the
kusano fc6ab3
    same process.
kusano fc6ab3
kusano fc6ab3
    Intermixing multiple CRTs is possible, as long as their
kusano fc6ab3
    internal states are kept intact.  The Microsoft Knowledge Base
kusano fc6ab3
    articles KB94248 "HOWTO: Use the C Run-Time" and KB140584
kusano fc6ab3
    "HOWTO: Link with the Correct C Run-Time (CRT) Library"
kusano fc6ab3
    mention the potential problems raised by intermixing.
kusano fc6ab3
kusano fc6ab3
    If intermixing works for you, it's because your application
kusano fc6ab3
    and DLLs are avoiding the corruption of each of the CRTs'
kusano fc6ab3
    internal states, maybe by careful design, or maybe by fortune.
kusano fc6ab3
kusano fc6ab3
    Also note that linking ZLIB1.DLL to non-Microsoft CRTs, such
kusano fc6ab3
    as those provided by Borland, raises similar problems.
kusano fc6ab3
kusano fc6ab3
kusano fc6ab3
11. Why are you linking ZLIB1.DLL to MSVCRT.DLL?
kusano fc6ab3
kusano fc6ab3
  - MSVCRT.DLL exists on every Windows 95 with a new service pack
kusano fc6ab3
    installed, or with Microsoft Internet Explorer 4 or later, and
kusano fc6ab3
    on all other Windows 4.x or later (Windows 98, Windows NT 4,
kusano fc6ab3
    or later).  It is freely distributable; if not present in the
kusano fc6ab3
    system, it can be downloaded from Microsoft or from other
kusano fc6ab3
    software provider for free.
kusano fc6ab3
kusano fc6ab3
    The fact that MSVCRT.DLL does not exist on a virgin Windows 95
kusano fc6ab3
    is not so problematic.  Windows 95 is scarcely found nowadays,
kusano fc6ab3
    Microsoft ended its support a long time ago, and many recent
kusano fc6ab3
    applications from various vendors, including Microsoft, do not
kusano fc6ab3
    even run on it.  Furthermore, no serious user should run
kusano fc6ab3
    Windows 95 without a proper update installed.
kusano fc6ab3
kusano fc6ab3
kusano fc6ab3
12. Why are you not linking ZLIB1.DLL to
kusano fc6ab3
    <<my c="" favorite="" library="" run-time="">> ?</my>
kusano fc6ab3
kusano fc6ab3
  - We considered and abandoned the following alternatives:
kusano fc6ab3
kusano fc6ab3
    * Linking ZLIB1.DLL to a static C library (LIBC.LIB, or
kusano fc6ab3
      LIBCMT.LIB) is not a good option.  People are using the DLL
kusano fc6ab3
      mainly to save disk space.  If you are linking your program
kusano fc6ab3
      to a static C library, you may as well consider linking zlib
kusano fc6ab3
      in statically, too.
kusano fc6ab3
kusano fc6ab3
    * Linking ZLIB1.DLL to CRTDLL.DLL looks appealing, because
kusano fc6ab3
      CRTDLL.DLL is present on every Win32 installation.
kusano fc6ab3
      Unfortunately, it has a series of problems: it does not
kusano fc6ab3
      work properly with Microsoft's C++ libraries, it does not
kusano fc6ab3
      provide support for 64-bit file offsets, (and so on...),
kusano fc6ab3
      and Microsoft discontinued its support a long time ago.
kusano fc6ab3
kusano fc6ab3
    * Linking ZLIB1.DLL to MSVCR70.DLL or MSVCR71.DLL, supplied
kusano fc6ab3
      with the Microsoft .NET platform, and Visual C++ 7.0/7.1,
kusano fc6ab3
      raises problems related to the status of ZLIB1.DLL as a
kusano fc6ab3
      system component.  According to the Microsoft Knowledge Base
kusano fc6ab3
      article KB326922 "INFO: Redistribution of the Shared C
kusano fc6ab3
      Runtime Component in Visual C++ .NET", MSVCR70.DLL and
kusano fc6ab3
      MSVCR71.DLL are not supposed to function as system DLLs,
kusano fc6ab3
      because they may clash with MSVCRT.DLL.  Instead, the
kusano fc6ab3
      application's installer is supposed to put these DLLs
kusano fc6ab3
      (if needed) in the application's private directory.
kusano fc6ab3
      If ZLIB1.DLL depends on a non-system runtime, it cannot
kusano fc6ab3
      function as a redistributable system component.
kusano fc6ab3
kusano fc6ab3
    * Linking ZLIB1.DLL to non-Microsoft runtimes, such as
kusano fc6ab3
      Borland's, or Cygwin's, raises problems related to the
kusano fc6ab3
      reliable presence of these runtimes on Win32 systems.
kusano fc6ab3
      It's easier to let the DLL build of zlib up to the people
kusano fc6ab3
      who distribute these runtimes, and who may proceed as
kusano fc6ab3
      explained in the answer to Question 14.
kusano fc6ab3
kusano fc6ab3
kusano fc6ab3
13. If ZLIB1.DLL cannot be linked to MSVCR70.DLL or MSVCR71.DLL,
kusano fc6ab3
    how can I build/use ZLIB1.DLL in Microsoft Visual C++ 7.0
kusano fc6ab3
    (Visual Studio .NET) or newer?
kusano fc6ab3
kusano fc6ab3
  - Due to the problems explained in the Microsoft Knowledge Base
kusano fc6ab3
    article KB326922 (see the previous answer), the C runtime that
kusano fc6ab3
    comes with the VC7 environment is no longer considered a
kusano fc6ab3
    system component.  That is, it should not be assumed that this
kusano fc6ab3
    runtime exists, or may be installed in a system directory.
kusano fc6ab3
    Since ZLIB1.DLL is supposed to be a system component, it may
kusano fc6ab3
    not depend on a non-system component.
kusano fc6ab3
kusano fc6ab3
    In order to link ZLIB1.DLL and your application to MSVCRT.DLL
kusano fc6ab3
    in VC7, you need the library of Visual C++ 6.0 or older.  If
kusano fc6ab3
    you don't have this library at hand, it's probably best not to
kusano fc6ab3
    use ZLIB1.DLL.
kusano fc6ab3
kusano fc6ab3
    We are hoping that, in the future, Microsoft will provide a
kusano fc6ab3
    way to build applications linked to a proper system runtime,
kusano fc6ab3
    from the Visual C++ environment.  Until then, you have a
kusano fc6ab3
    couple of alternatives, such as linking zlib in statically.
kusano fc6ab3
    If your application requires dynamic linking, you may proceed
kusano fc6ab3
    as explained in the answer to Question 14.
kusano fc6ab3
kusano fc6ab3
kusano fc6ab3
14. I need to link my own DLL build to a CRT different than
kusano fc6ab3
    MSVCRT.DLL.  What can I do?
kusano fc6ab3
kusano fc6ab3
  - Feel free to rebuild the DLL from the zlib sources, and link
kusano fc6ab3
    it the way you want.  You should, however, clearly state that
kusano fc6ab3
    your build is unofficial.  You should give it a different file
kusano fc6ab3
    name, and/or install it in a private directory that can be
kusano fc6ab3
    accessed by your application only, and is not visible to the
kusano fc6ab3
    others (i.e. it's neither in the PATH, nor in the SYSTEM or
kusano fc6ab3
    SYSTEM32 directories).  Otherwise, your build may clash with
kusano fc6ab3
    applications that link to the official build.
kusano fc6ab3
kusano fc6ab3
    For example, in Cygwin, zlib is linked to the Cygwin runtime
kusano fc6ab3
    CYGWIN1.DLL, and it is distributed under the name CYGZ.DLL.
kusano fc6ab3
kusano fc6ab3
kusano fc6ab3
15. May I include additional pieces of code that I find useful,
kusano fc6ab3
    link them in ZLIB1.DLL, and export them?
kusano fc6ab3
kusano fc6ab3
  - No.  A legitimate build of ZLIB1.DLL must not include code
kusano fc6ab3
    that does not originate from the official zlib source code.
kusano fc6ab3
    But you can make your own private DLL build, under a different
kusano fc6ab3
    file name, as suggested in the previous answer.
kusano fc6ab3
kusano fc6ab3
    For example, zlib is a part of the VCL library, distributed
kusano fc6ab3
    with Borland Delphi and C++ Builder.  The DLL build of VCL
kusano fc6ab3
    is a redistributable file, named VCLxx.DLL.
kusano fc6ab3
kusano fc6ab3
kusano fc6ab3
16. May I remove some functionality out of ZLIB1.DLL, by enabling
kusano fc6ab3
    macros like NO_GZCOMPRESS or NO_GZIP at compile time?
kusano fc6ab3
kusano fc6ab3
  - No.  A legitimate build of ZLIB1.DLL must provide the complete
kusano fc6ab3
    zlib functionality, as implemented in the official zlib source
kusano fc6ab3
    code.  But you can make your own private DLL build, under a
kusano fc6ab3
    different file name, as suggested in the previous answer.
kusano fc6ab3
kusano fc6ab3
kusano fc6ab3
17. I made my own ZLIB1.DLL build.  Can I test it for compliance?
kusano fc6ab3
kusano fc6ab3
  - We prefer that you download the official DLL from the zlib
kusano fc6ab3
    web site.  If you need something peculiar from this DLL, you
kusano fc6ab3
    can send your suggestion to the zlib mailing list.
kusano fc6ab3
kusano fc6ab3
    However, in case you do rebuild the DLL yourself, you can run
kusano fc6ab3
    it with the test programs found in the DLL distribution.
kusano fc6ab3
    Running these test programs is not a guarantee of compliance,
kusano fc6ab3
    but a failure can imply a detected problem.
kusano fc6ab3
kusano fc6ab3
**
kusano fc6ab3
kusano fc6ab3
This document is written and maintained by
kusano fc6ab3
Cosmin Truta <cosmint@cs.ubbcluj.ro></cosmint@cs.ubbcluj.ro>