Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
wine
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Johnny Cai
wine
Commits
508cac8a
Commit
508cac8a
authored
21 years ago
by
Dimitrie O. Paun
Committed by
Alexandre Julliard
21 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Merge documentation/status/lzexpand into the lzexpand source.
parent
1bae93d6
Loading
Loading
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
dlls/lzexpand/lzexpand_main.c
+15
-4
15 additions, 4 deletions
dlls/lzexpand/lzexpand_main.c
documentation/status/lzexpand
+0
-20
0 additions, 20 deletions
documentation/status/lzexpand
with
15 additions
and
24 deletions
dlls/lzexpand/lzexpand_main.c
+
15
−
4
View file @
508cac8a
...
...
@@ -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
);
...
...
This diff is collapsed.
Click to expand it.
documentation/status/lzexpand
deleted
100644 → 0
+
0
−
20
View file @
1bae93d6
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.
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment