diff options
Diffstat (limited to 'INDEX')
-rw-r--r-- | INDEX | 61 |
1 files changed, 42 insertions, 19 deletions
@@ -1,22 +1,28 @@ | |||
1 | ChangeLog history of changes | 1 | ChangeLog history of changes |
2 | INDEX this file | 2 | INDEX this file |
3 | Make_vms.com script for Vax/VMS | 3 | Make_vms.com script for Vax/VMS |
4 | Makefile makefile for Unix (generated by configure) | 4 | Makefile makefile for Unix (generated by configure) |
5 | Makefile.b32 makefile for Borland C++ 32-bit | 5 | Makefile.in makefile for Unix (template for configure) |
6 | Makefile.bor makefile for Borland C/C++ 16-bit | 6 | Makefile.msc makefile for Microsoft C 16-bit |
7 | Makefile.dj2 makefile for DJGPP 2.x | 7 | Makefile.riscos makefile for RISCOS |
8 | Makefile.in makefile for Unix (template for configure) | 8 | Makefile.sas makefile for Amiga SAS/C |
9 | Makefile.msc makefile for Microsoft C 16-bit | 9 | README guess what |
10 | Makefile.riscos makefile for RISCOS | 10 | algorithm.txt description of the (de)compression algorithm |
11 | Makefile.sas makefile for Amiga SAS/C | 11 | configure configure script for Unix |
12 | Makefile.tc makefile for Turbo C | 12 | descrip.mms makefile for Vax/VMS |
13 | Makefile.wat makefile for Watcom C | 13 | zlib.3 mini man page for zlib (volunteers to write full |
14 | README guess what | 14 | man pages from zlib.h welcome. write to jloup@gzip.org) |
15 | algorithm.doc description of the compression & decompression algorithms | 15 | |
16 | configure configure script for Unix | 16 | msdos/Makefile.b32 makefile for Borland C++ 32-bit |
17 | descrip.mms makefile for Vax/VMS | 17 | msdos/Makefile.bor makefile for Borland C/C++ 16-bit |
18 | zlib.def definition file for Windows DLL | 18 | msdos/Makefile.dj2 makefile for DJGPP 2.x |
19 | zlib.rc definition file for Windows DLL | 19 | msdos/Makefile.tc makefile for Turbo C |
20 | msdos/Makefile.wat makefile for Watcom C | ||
21 | msdos/zlib.def definition file for Windows DLL | ||
22 | msdos/zlib.rc definition file for Windows DLL | ||
23 | |||
24 | nt/Makefile.nt makefile for Windows NT | ||
25 | nt/zlib.dnt definition file for Windows NT DLL | ||
20 | 26 | ||
21 | 27 | ||
22 | zlib public header files (must be kept): | 28 | zlib public header files (must be kept): |
@@ -49,3 +55,20 @@ zutil.h | |||
49 | source files for sample programs: | 55 | source files for sample programs: |
50 | example.c | 56 | example.c |
51 | minigzip.c | 57 | minigzip.c |
58 | |||
59 | unsupported contribution by third parties | ||
60 | |||
61 | contrib/asm386/ by Gilles Vollant <info@winimage.com> | ||
62 | 386 asm code replacing longest_match(). | ||
63 | |||
64 | contrib/iostream/ by Kevin Ruland <kevin@rodin.wustl.edu> | ||
65 | A C++ I/O streams interface to the zlib gz* functions | ||
66 | |||
67 | contrib/iostream2/ by Tyge Løvset <Tyge.Lovset@cmr.no> | ||
68 | Another C++ I/O streams interface | ||
69 | |||
70 | contrib/untgz/ by "Pedro A. Aranda Guti\irrez" <paag@tid.es> | ||
71 | A very simple tar.gz extractor using zlib | ||
72 | |||
73 | contrib/visual-basic.txt by Carlos Rios <c_rios@sonda.cl> | ||
74 | How to use compress(), uncompress() and the gz* functions from VB. | ||