Skip to content

Latest commit

 

History

History
202 lines (164 loc) · 4.07 KB

nf-lzexpand-lzinit.md

File metadata and controls

202 lines (164 loc) · 4.07 KB
UID title description helpviewer_keywords old-location tech.root ms.assetid ms.date ms.keywords req.header req.include-header req.target-type req.target-min-winverclnt req.target-min-winversvr req.kmdf-ver req.umdf-ver req.ddi-compliance req.unicode-ansi req.idl req.max-support req.namespace req.assembly req.type-library req.lib req.dll req.irql targetos req.typenames req.redist ms.custom f1_keywords dev_langs topic_type api_type api_location api_name
NF:lzexpand.LZInit
LZInit function (lzexpand.h)
Allocates memory for the internal data structures required to decompress files, and then creates and initializes them.
LZInit
LZInit function [Files]
_win32_lzinit
base.lzinit
fs.lzinit
lzexpand/LZInit
fs\lzinit.htm
fs
53e6345a-e303-4ef6-8b4d-b9a3fcacfb13
12/05/2018
LZInit, LZInit function [Files], _win32_lzinit, base.lzinit, fs.lzinit, lzexpand/LZInit
lzexpand.h
Windows.h
Windows
Windows XP [desktop apps only]
Windows Server 2003 [desktop apps only]
Lz32.lib
Lz32.dll
Windows
19H1
LZInit
lzexpand/LZInit
c++
APIRef
kbSyntax
DllExport
Lz32.dll
LZInit

LZInit function

-description

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

-parameters

-param hfSource [in]

A handle to the file.

-returns

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 code Description
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.

In Windows 8 and Windows Server 2012, this function is supported by the following technologies.

Technology Supported
Server Message Block (SMB) 3.0 protocol Yes
SMB 3.0 Transparent Failover (TFO) Yes
SMB 3.0 with Scale-out File Shares (SO) Yes
Cluster Shared Volume File System (CsvFS) Yes
Resilient File System (ReFS) Yes
 

CsvFs will do redirected IO for compressed files.

-see-also

File Compression and Decompression

File Management Functions