FAQ
上传用户:zlt_tm
上传日期:2007-01-06
资源大小:214k
文件大小:2k
源码类别:

压缩解压

开发平台:

WINDOWS

  1. Frequently Asked Questions about zlib
  2. If your question is not there, please check the zlib home page 
  3. http://www.cdrom.com/pub/infozip/zlib/ which may have more recent information.
  4. 1) I need a Windows DLL
  5. 2) I need a Visual Basic interface to zlib
  6. 3) compress() returns Z_BUF_ERROR
  7. 4) deflate or inflate returns Z_BUF_ERROR
  8. 5) Where is the zlib documentation (man pages, etc...)?
  9. 6) Why don't you use GNU autoconf, libtool, etc...?
  10. 7) There is a bug in zlib.
  11. 8) I get "undefined reference to gzputc"
  12. 1) I need a Windows DLL
  13.   The zlib sources can be compiled without change to produce a DLL.
  14.   If you want a precompiled DLL, see http://www.winimage.com/zLibDll
  15. 2) I need a Visual Basic interface to zlib
  16.   See http://www.tcfb.com/dowseware/cmp-z-it.zip
  17.       http://web2.airmail.net/markn/articles/zlibtool/zlibtool.htm
  18.   and contrib/visual-basic.txt
  19. 3) compress() returns Z_BUF_ERROR
  20.   Make sure that before the call of compress, the length of the
  21.   compressed buffer is equal to the total size of the compressed buffer
  22.   and not zero.  For Visual Basic, check that this parameter is passed
  23.   by reference ("as any"), not by value ("as long").
  24. 4) deflate or inflate returns Z_BUF_ERROR
  25.   Make sure that before the call avail_in and avail_out are not zero.
  26. 5) Where is the zlib documentation (man pages, etc...)?
  27.   It's in zlib.h for the moment. Volunteers to transform this
  28.   to man pages, please contact jloup@gzip.org. Examples of zlib usage
  29.   are in the files example.c and minigzip.c.
  30. 6) Why don't you use GNU autoconf, libtool, etc...?
  31.   Because we would like to keep zlib as a very small and simple package.
  32.   zlib is rather portable and doesn't need much configuration.
  33. 7) There is a bug in zlib.
  34.   Most of the time, such problems are due to an incorrect usage
  35.   of zlib. Please try to reproduce the problem with a small
  36.   program and send us the corresponding source at zlib@quest.jpl.nasa.gov
  37.   Do not send multi-megabyte data files without prior agreement.
  38. 8) I get "undefined reference to gzputc"
  39.   If "make test" produces something like
  40.      example.o(.text+0x174): 
  41.   check that you don't have old files libz.* in /usr/lib, /usr/local/lib
  42.   or /usr/X11R6/lib. Remove old versions then do "make install".