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

This commit is contained in:
Felix Nawothnig 2007-01-14 17:05:00 +01:00 committed by Alexandre Julliard
parent 2e34ea4e01
commit 89d8b47547
2 changed files with 1 additions and 14 deletions

View File

@ -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)

View File

@ -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);
}