Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
5a47bc24
Commit
5a47bc24
authored
Aug 10, 2005
by
Francois Gouget
Committed by
Alexandre Julliard
Aug 10, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update the documentation to reflect the fact that the LZ* functions
are implemented in kernel32.dll now.
parent
009485b4
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
13 deletions
+12
-13
lzexpand.c
dlls/kernel/lzexpand.c
+12
-13
No files found.
dlls/kernel/lzexpand.c
View file @
5a47bc24
...
@@ -150,7 +150,7 @@ static INT read_header(HFILE fd,struct lzfileheader *head)
...
@@ -150,7 +150,7 @@ static INT read_header(HFILE fd,struct lzfileheader *head)
/***********************************************************************
/***********************************************************************
* LZStart (
LZ
32.@)
* LZStart (
KERNEL
32.@)
*/
*/
INT
WINAPI
LZStart
(
void
)
INT
WINAPI
LZStart
(
void
)
{
{
...
@@ -160,7 +160,7 @@ INT WINAPI LZStart(void)
...
@@ -160,7 +160,7 @@ INT WINAPI LZStart(void)
/***********************************************************************
/***********************************************************************
* LZInit (
LZ
32.@)
* LZInit (
KERNEL
32.@)
*
*
* initializes internal decompression buffers, returns lzfiledescriptor.
* initializes internal decompression buffers, returns lzfiledescriptor.
* (return value the same as hfSrc, if hfSrc is not compressed)
* (return value the same as hfSrc, if hfSrc is not compressed)
...
@@ -213,8 +213,7 @@ HFILE WINAPI LZInit( HFILE hfSrc )
...
@@ -213,8 +213,7 @@ HFILE WINAPI LZInit( HFILE hfSrc )
/***********************************************************************
/***********************************************************************
* LZDone (LZEXPAND.9)
* LZDone (KERNEL32.@)
* LZDone (LZ32.@)
*/
*/
void
WINAPI
LZDone
(
void
)
void
WINAPI
LZDone
(
void
)
{
{
...
@@ -223,7 +222,7 @@ void WINAPI LZDone(void)
...
@@ -223,7 +222,7 @@ void WINAPI LZDone(void)
/***********************************************************************
/***********************************************************************
* GetExpandedNameA (
LZ
32.@)
* GetExpandedNameA (
KERNEL
32.@)
*
*
* gets the full filename of the compressed file 'in' by opening it
* gets the full filename of the compressed file 'in' by opening it
* and reading the header
* and reading the header
...
@@ -301,7 +300,7 @@ INT WINAPI GetExpandedNameA( LPSTR in, LPSTR out )
...
@@ -301,7 +300,7 @@ INT WINAPI GetExpandedNameA( LPSTR in, LPSTR out )
/***********************************************************************
/***********************************************************************
* GetExpandedNameW (
LZ
32.@)
* GetExpandedNameW (
KERNEL
32.@)
*/
*/
INT
WINAPI
GetExpandedNameW
(
LPWSTR
in
,
LPWSTR
out
)
INT
WINAPI
GetExpandedNameW
(
LPWSTR
in
,
LPWSTR
out
)
{
{
...
@@ -319,7 +318,7 @@ INT WINAPI GetExpandedNameW( LPWSTR in, LPWSTR out )
...
@@ -319,7 +318,7 @@ INT WINAPI GetExpandedNameW( LPWSTR in, LPWSTR out )
/***********************************************************************
/***********************************************************************
* LZRead (
LZ
32.@)
* LZRead (
KERNEL
32.@)
*/
*/
INT
WINAPI
LZRead
(
HFILE
fd
,
LPSTR
vbuf
,
INT
toread
)
INT
WINAPI
LZRead
(
HFILE
fd
,
LPSTR
vbuf
,
INT
toread
)
{
{
...
@@ -410,7 +409,7 @@ INT WINAPI LZRead( HFILE fd, LPSTR vbuf, INT toread )
...
@@ -410,7 +409,7 @@ INT WINAPI LZRead( HFILE fd, LPSTR vbuf, INT toread )
/***********************************************************************
/***********************************************************************
* LZSeek (
LZ
32.@)
* LZSeek (
KERNEL
32.@)
*/
*/
LONG
WINAPI
LZSeek
(
HFILE
fd
,
LONG
off
,
INT
type
)
LONG
WINAPI
LZSeek
(
HFILE
fd
,
LONG
off
,
INT
type
)
{
{
...
@@ -442,7 +441,7 @@ LONG WINAPI LZSeek( HFILE fd, LONG off, INT type )
...
@@ -442,7 +441,7 @@ LONG WINAPI LZSeek( HFILE fd, LONG off, INT type )
/***********************************************************************
/***********************************************************************
* LZCopy (
LZ
32.@)
* LZCopy (
KERNEL
32.@)
*
*
* Copies everything from src to dest
* Copies everything from src to dest
* if src is a LZ compressed file, it will be uncompressed.
* if src is a LZ compressed file, it will be uncompressed.
...
@@ -524,7 +523,7 @@ static LPSTR LZEXPAND_MangleName( LPCSTR fn )
...
@@ -524,7 +523,7 @@ static LPSTR LZEXPAND_MangleName( LPCSTR fn )
/***********************************************************************
/***********************************************************************
* LZOpenFileA (
LZ
32.@)
* LZOpenFileA (
KERNEL
32.@)
*
*
* Opens a file. If not compressed, open it as a normal file.
* Opens a file. If not compressed, open it as a normal file.
*/
*/
...
@@ -552,7 +551,7 @@ HFILE WINAPI LZOpenFileA( LPSTR fn, LPOFSTRUCT ofs, WORD mode )
...
@@ -552,7 +551,7 @@ HFILE WINAPI LZOpenFileA( LPSTR fn, LPOFSTRUCT ofs, WORD mode )
/***********************************************************************
/***********************************************************************
* LZOpenFileW (
LZ
32.@)
* LZOpenFileW (
KERNEL
32.@)
*/
*/
HFILE
WINAPI
LZOpenFileW
(
LPWSTR
fn
,
LPOFSTRUCT
ofs
,
WORD
mode
)
HFILE
WINAPI
LZOpenFileW
(
LPWSTR
fn
,
LPOFSTRUCT
ofs
,
WORD
mode
)
{
{
...
@@ -567,7 +566,7 @@ HFILE WINAPI LZOpenFileW( LPWSTR fn, LPOFSTRUCT ofs, WORD mode )
...
@@ -567,7 +566,7 @@ HFILE WINAPI LZOpenFileW( LPWSTR fn, LPOFSTRUCT ofs, WORD mode )
/***********************************************************************
/***********************************************************************
* LZClose (
LZ
32.@)
* LZClose (
KERNEL
32.@)
*/
*/
void
WINAPI
LZClose
(
HFILE
fd
)
void
WINAPI
LZClose
(
HFILE
fd
)
{
{
...
@@ -586,7 +585,7 @@ void WINAPI LZClose( HFILE fd )
...
@@ -586,7 +585,7 @@ void WINAPI LZClose( HFILE fd )
/***********************************************************************
/***********************************************************************
* CopyLZFile (
LZ
32.@)
* CopyLZFile (
KERNEL
32.@)
*
*
* Copy src to dest (including uncompressing src).
* Copy src to dest (including uncompressing src).
* NOTE: Yes. This is exactly the same function as LZCopy.
* NOTE: Yes. This is exactly the same function as LZCopy.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment