LZInit function (Windows)

Switch View :
ScriptFree
LZInit function

Applies to: desktop apps only

Allocates memory for the internal data structures required to decompress files, and then creates and initializes them.

Syntax

INT WINAPI LZInit(
  __in  INT hfSource
);

Parameters

hfSource [in]

A handle to the file.

Return value

If the function succeeds, the return value is a new LZ file handle.

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

The following is the list of the error codes that LZInit can return upon failure.

Return codeDescription
LZERROR_BADINHANDLE

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

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_UNKNOWNALG

The file is compressed with an unrecognized compression algorithm.

 

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

Remarks

A maximum of 16 compressed files can be open at any given time. Similarly, a maximum of 16 uncompressed files can be open at any given time. An application should be careful to close the handle returned by LZInit when it is done using the file; otherwise, the application can inadvertently hit the 16-file limit.

The handle this function returns is compatible only with the functions in Lz32.dll; it should not be used for other file operations.

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

 

 

Send comments about this topic to Microsoft

Build date: 4/17/2012