From 508cac8ad6dea76a6c2133e750f3a5772be3082b Mon Sep 17 00:00:00 2001 From: "Dimitrie O. Paun" Date: Sat, 27 Sep 2003 02:22:02 +0000 Subject: [PATCH] Merge documentation/status/lzexpand into the lzexpand source. --- dlls/lzexpand/lzexpand_main.c | 19 +++++++++++++++---- documentation/status/lzexpand | 20 -------------------- 2 files changed, 15 insertions(+), 24 deletions(-) delete mode 100644 documentation/status/lzexpand diff --git a/dlls/lzexpand/lzexpand_main.c b/dlls/lzexpand/lzexpand_main.c index 19764ac9ec2..0eb39e68227 100644 --- a/dlls/lzexpand/lzexpand_main.c +++ b/dlls/lzexpand/lzexpand_main.c @@ -16,9 +16,21 @@ * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA - */ -/* - * FIXME: return values might be wrong + * + * NOTES + * + * The LZ (Lempel Ziv) decompression was used in win16 installation programs. + * It is a simple tabledriven decompression engine, the algorithm is not + * documented as far as I know. WINE does not contain a compressor for + * this format. + * + * The implementation is complete and there have been no reports of failures + * for some time. + * + * TODO: + * + * o Check whether the return values are correct + * */ #include "config.h" @@ -37,7 +49,6 @@ #include "lzexpand.h" #include "wine/unicode.h" - #include "wine/debug.h" WINE_DEFAULT_DEBUG_CHANNEL(file); diff --git a/documentation/status/lzexpand b/documentation/status/lzexpand deleted file mode 100644 index b89e354f5e6..00000000000 --- a/documentation/status/lzexpand +++ /dev/null @@ -1,20 +0,0 @@ -This file contains information about the LZ file decompression libraries. - -The LZ (Lempel Ziv) decompression was used in win16 installation programs. -(Win32 installation programs now use mostly CAB or WINZIP selfextractors - or something similair.) -It is a simple tabledriven decompression engine, the algorithm is not -documented as far as I know. WINE does not contain a compressor for -this format. - -The libraries consist of LZEXPAND.DLL (win16) and LZ32.DLL (win32), the -implementation can be found in misc/lzexpand.c and there is a small -example program in libtest/expand.c. - -The implementation is complete and there have been no reports of failures -for some time. - -FIXMEs: - - Check for correct include files - - Check whether the return values are correct - - Write a compressor for this format.