1 out of 1 rated this helpful - Rate this topic

LZCopy function

Applies to: desktop apps only

Copies a source file to a destination file. If the source file has been compressed by the Lempel-Ziv algorithm, this function creates a decompressed destination file. If the source file is not compressed, this function duplicates the original file.

Syntax

LONG WINAPI LZCopy(
  __in  INT hfSource,
  __in  INT hfDest
);

Parameters

hfSource [in]

A handle to the source file.

hfDest [in]

A handle to the destination file.

Return value

If the function succeeds, the return value specifies the size, in bytes, of the destination file.

If the function fails, the return value is an LZERROR_* code. These codes have values less than zero. Note that LZCopy calls neither SetLastError nor SetLastErrorEx; thus, its failure does not affect a thread's last-error code.

The following is a list of error codes that LZCopy can return upon failure.

Return codeDescription
LZERROR_BADINHANDLE

The handle identifying the source file is not valid. The file cannot be read.

LZERROR_BADOUTHANDLE

The handle identifying the destination file is not valid. The file cannot be written.

LZERROR_GLOBALLOC

The maximum number of open compressed files has been exceeded or local memory cannot be allocated.

LZERROR_GLOBLOCK

The LZ file handle cannot be locked down.

LZERROR_READ

The source file format is not valid.

 

There is no extended error information for this function; do not call GetLastError.

Remarks

The handles identifying the source and destination files must be retrieved by calling the LZInit or LZOpenFile function.

If the function succeeds, the file identified by the hfDest parameter is always uncompressed.

Requirements

Minimum supported client

Windows XP

Minimum supported server

Windows Server 2003

Header

LzExpand.h (include Windows.h)

Library

Lz32.lib

DLL

Lz32.dll

See also

File Compression and Decompression
File Management Functions
LZInit
LZOpenFile

 

 

Send comments about this topic to Microsoft

Build date: 4/17/2012

Did you find this helpful?
(1500 characters remaining)
Community Content Add
Annotations FAQ