Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
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-winehq
Commits
89d8b475
Commit
89d8b475
authored
Jan 14, 2007
by
Felix Nawothnig
Committed by
Alexandre Julliard
Jan 15, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
kernel32: Forward CopyLZFile() to LZCopy() instead of wrapping it.
parent
2e34ea4e
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
1 addition
and
14 deletions
+1
-14
kernel32.spec
dlls/kernel32/kernel32.spec
+1
-1
lzexpand.c
dlls/kernel32/lzexpand.c
+0
-13
No files found.
dlls/kernel32/kernel32.spec
View file @
89d8b475
...
...
@@ -208,7 +208,7 @@
@ stdcall CopyFileExA (str str ptr ptr ptr long)
@ stdcall CopyFileExW (wstr wstr ptr ptr ptr long)
@ stdcall CopyFileW(wstr wstr long)
@ stdcall CopyLZFile(long long)
@ stdcall CopyLZFile(long long)
LZCopy
@ stdcall CreateActCtxA(ptr)
@ stdcall CreateActCtxW(ptr)
@ stdcall CreateConsoleScreenBuffer(long long ptr long ptr)
...
...
dlls/kernel32/lzexpand.c
View file @
89d8b475
...
...
@@ -588,16 +588,3 @@ void WINAPI LZClose( HFILE fd )
HeapFree
(
GetProcessHeap
(),
0
,
lzs
);
}
}
/***********************************************************************
* CopyLZFile (KERNEL32.@)
*
* Copy src to dest (including uncompressing src).
* NOTE: Yes. This is exactly the same function as LZCopy.
*/
LONG
WINAPI
CopyLZFile
(
HFILE
src
,
HFILE
dest
)
{
TRACE
(
"(%d,%d)
\n
"
,
src
,
dest
);
return
LZCopy
(
src
,
dest
);
}
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