1 This file contains information about the LZ file decompression libraries.
3 The LZ (Lempel Ziv) decompression was used in win16 installation programs.
4 (Win32 installation programs now use mostly CAB or WINZIP selfextractors
5 or something similair.)
6 It is a simple tabledriven decompression engine, the algorithm is not
7 documented as far as I know. WINE does not contain a compressor for
10 The libraries consist of LZEXPAND.DLL (win16) and LZ32.DLL (win32), the
11 implementation can be found in misc/lzexpand.c and there is a small
12 example program in libtest/expand.c.
14 The implementation is complete and there have been no reports of failures
18 - Check for correct include files
19 - Check whether the return values are correct
20 - Write a compressor for this format.