The information in this article applies to:
SUMMARY
LZFILE is a file in the Microsoft Software Library that demonstrates using
the functions provided by the LZEXPAND dynamic-link library (DLL).
LZEXPAND.DLL contains functions to decompress files compressed with
the COMPRESS.EXE application, which is an MS-DOS application that
implements the Lempel-Ziv data compression algorithm.
MORE INFORMATIONThe following files are available for download from the Microsoft
Download Center. Click the file names below to download the files: http://www.microsoft.com/downloads/search.aspand then click How to use the Microsoft Download Center. LZFILE has three menu options to access files: Open, Copy 1, and Copy Multiple. LZFILE uses the Open and Save As dialog boxes from the common dialog box library to retrieve the filenames. If the user chooses Open from the File menu, LZFILE calls LZOpenFile to open the file and reads the contents with LZRead. If the file is compressed, LZRead decompresses the file. LZFILE displays the file's contents in a read-only edit control that fills the application's client area. The LZClose function closes the file. If the user selects Copy 1 from the File menu, LZFILE calls LZOpenFile to open the source and destination files, calls LZCopy to copy the source file into the destination file (which decompresses the source if necessary), and calls LZClose to close both files. If the user selects Copy Multiple from the File menu, LZFILE calls LZStart to allocate memory for multiple file copies, LZOpenFile to open the source and destination files, CopyLZFile to copy the files (and decompress them if necessary), LZClose to close the files, and LZDone to free the memory allocated by LZStart. Additional query words:
Keywords : kbfile kbsample kb16bitonly kbKernBase kbWinOS310 kbWinOS300 |
Last Reviewed: December 7, 1999 © 2000 Microsoft Corporation. All rights reserved. Terms of Use. |