Commit 89d8b475 authored by Felix Nawothnig's avatar Felix Nawothnig Committed by Alexandre Julliard

kernel32: Forward CopyLZFile() to LZCopy() instead of wrapping it.

parent 2e34ea4e
......@@ -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)
......
......@@ -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);
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment