README.TXT 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. -- notes ---------------------------------------------------------------------
  2. the zlibex.pas unit included in this archive will work with delphi 5, 6,
  3. and 7. if you previously downloaded my delphi 5 unit, you will notice
  4. that the unit has been renamed. this was done because borland included in
  5. its delphi 6 and 7 lib directories a zlib.dcu file; and i felt it was more
  6. correct to rename my unit and force developers to have to update their
  7. code than to make developers worry about the possible file contention in
  8. delphi 6 and 7.
  9. please contact me if you find any errors, make any changes, add new
  10. functionality, or have any general suggestions so that i may incorporate
  11. them into my version. i can be reached via my website at
  12. http://www.base2ti.com.
  13. thanks.
  14. -- acknowledgements ----------------------------------------------------------
  15. erik turner - thanks for the enhancements and recommendations.
  16. specifically, the ZCompressionStream and ZDecompressionStream routines.
  17. my apologies for the delay in getting these in here.
  18. david bennion - thanks for finding that nasty little endless loop quirk
  19. with the TZDecompressionStream.Read method.
  20. burak kalayci - thanks for emailing to inform me about the zlib 1.1.4
  21. update; and again for emailing about 1.2.1.
  22. -- installation --------------------------------------------------------------
  23. first, copy all of the files into a folder (for example, c:\delphi\zlib).
  24. next, include the folder in the library path in the environment options.
  25. finally, "use" the zlibex unit as needed.
  26. -- contents ------------------------------------------------------------------
  27. delphi 5/6/7 files
  28. zlibex.pas
  29. objects files used by zlibex.pas
  30. adler32.obj
  31. compress.obj
  32. crc32.obj
  33. deflate.obj
  34. infback.obj
  35. inffast.obj
  36. inflate.obj
  37. inftrees.obj
  38. trees.obj
  39. c++ Builder 6 files
  40. DelphiZLib.bpr
  41. DelphiZlib.cpp
  42. zlib 1.2.1 source files (http://www.gzip.org/zlib)
  43. adler32.c
  44. compress.c
  45. crc32.c
  46. deflate.c
  47. example.c
  48. gzio.c
  49. infback.c
  50. inffast.c
  51. inflate.c
  52. inftrees.c
  53. minigzip.c
  54. trees.c
  55. uncompr.c
  56. zutil.c
  57. deflate.h
  58. infback.h
  59. inffast.h
  60. inffixed.h
  61. inftrees.h
  62. trees.h
  63. zconf.h
  64. zlib.h
  65. zutil.h