diff options
Diffstat (limited to 'INDEX')
-rw-r--r-- | INDEX | 62 |
1 files changed, 11 insertions, 51 deletions
@@ -1,36 +1,16 @@ | |||
1 | ChangeLog history of changes | 1 | ChangeLog history of changes |
2 | INDEX this file | ||
3 | FAQ Frequently Asked Questions about zlib | 2 | FAQ Frequently Asked Questions about zlib |
4 | Make_vms.com script for Vax/VMS | 3 | INDEX this file |
5 | Makefile makefile for Unix (generated by configure) | 4 | Makefile makefile for Unix (generated by configure) |
6 | Makefile.in makefile for Unix (template for configure) | 5 | Makefile.in makefile for Unix (template for configure) |
7 | Makefile.riscos makefile for RISCOS | ||
8 | README guess what | 6 | README guess what |
9 | algorithm.txt description of the (de)compression algorithm | 7 | algorithm.txt description of the (de)compression algorithm |
10 | configure configure script for Unix | 8 | configure configure script for Unix |
11 | descrip.mms makefile for Vax/VMS | 9 | zconf.in.h template for zconf.h (used by configure) |
12 | zlib.3 mini man page for zlib (volunteers to write full | ||
13 | man pages from zlib.h welcome. write to jloup@gzip.org) | ||
14 | |||
15 | amiga/Makefile.sas makefile for Amiga SAS/C | ||
16 | amiga/Makefile.pup makefile for Amiga powerUP SAS/C PPC | ||
17 | |||
18 | msdos/Makefile.w32 makefile for Microsoft Visual C++ 32-bit | ||
19 | msdos/Makefile.b32 makefile for Borland C++ 32-bit | ||
20 | msdos/Makefile.bor makefile for Borland C/C++ 16-bit | ||
21 | msdos/Makefile.dj2 makefile for DJGPP 2.x | ||
22 | msdos/Makefile.emx makefile for EMX 0.9c (32-bit DOS/OS2) | ||
23 | msdos/Makefile.msc makefile for Microsoft C 16-bit | ||
24 | msdos/Makefile.tc makefile for Turbo C | ||
25 | msdos/Makefile.wat makefile for Watcom C | ||
26 | msdos/zlib.def definition file for Windows DLL | ||
27 | msdos/zlib.rc definition file for Windows DLL | ||
28 | |||
29 | nt/Makefile.nt makefile for Windows NT | ||
30 | nt/zlib.dnt definition file for Windows NT DLL | ||
31 | nt/Makefile.emx makefile for EMX 0.9c/RSXNT 1.41 (Win32 Intel) | ||
32 | nt/Makefile.gcc makefile for Windows NT using GCC (mingw32) | ||
33 | 10 | ||
11 | aix/ instructions for building an AIX shared library | ||
12 | old/ makefiles for various architectures and zlib documentation | ||
13 | that has not yet been updated for zlib 1.2.x | ||
34 | 14 | ||
35 | zlib public header files (must be kept): | 15 | zlib public header files (must be kept): |
36 | zconf.h | 16 | zconf.h |
@@ -40,22 +20,20 @@ zlib.h | |||
40 | adler32.c | 20 | adler32.c |
41 | compress.c | 21 | compress.c |
42 | crc32.c | 22 | crc32.c |
23 | crc32.h | ||
43 | deflate.c | 24 | deflate.c |
44 | deflate.h | 25 | deflate.h |
45 | gzio.c | 26 | gzio.c |
46 | infblock.c | 27 | infback.c |
47 | infblock.h | ||
48 | infcodes.c | ||
49 | infcodes.h | ||
50 | inffast.c | 28 | inffast.c |
51 | inffast.h | 29 | inffast.h |
30 | inffixed.h | ||
52 | inflate.c | 31 | inflate.c |
32 | inflate.h | ||
53 | inftrees.c | 33 | inftrees.c |
54 | inftrees.h | 34 | inftrees.h |
55 | infutil.c | ||
56 | infutil.h | ||
57 | maketree.c | ||
58 | trees.c | 35 | trees.c |
36 | trees.h | ||
59 | uncompr.c | 37 | uncompr.c |
60 | zutil.c | 38 | zutil.c |
61 | zutil.h | 39 | zutil.h |
@@ -65,22 +43,4 @@ example.c | |||
65 | minigzip.c | 43 | minigzip.c |
66 | 44 | ||
67 | unsupported contribution by third parties | 45 | unsupported contribution by third parties |
68 | 46 | See contrib/README.contrib | |
69 | contrib/asm386/ by Gilles Vollant <info@winimage.com> | ||
70 | 386 asm code replacing longest_match(). | ||
71 | |||
72 | contrib/minizip/ by Gilles Vollant <info@winimage.com> | ||
73 | Mini zip and unzip based on zlib | ||
74 | See http://www.winimage.com/zLibDll/unzip.html | ||
75 | |||
76 | contrib/iostream/ by Kevin Ruland <kevin@rodin.wustl.edu> | ||
77 | A C++ I/O streams interface to the zlib gz* functions | ||
78 | |||
79 | contrib/iostream2/ by Tyge Løvset <Tyge.Lovset@cmr.no> | ||
80 | Another C++ I/O streams interface | ||
81 | |||
82 | contrib/untgz/ by "Pedro A. Aranda Guti\irrez" <paag@tid.es> | ||
83 | A very simple tar.gz extractor using zlib | ||
84 | |||
85 | contrib/visual-basic.txt by Carlos Rios <c_rios@sonda.cl> | ||
86 | How to use compress(), uncompress() and the gz* functions from VB. | ||