Lines Matching +full:7 +full:z
1 7z ANSI-C Decoder 9.35
4 7z ANSI-C provides 7z/LZMA decoding.
5 7z ANSI-C version is simplified version ported from C++ code.
7 LZMA is default and general compression method of 7z format
8 in 7-Zip compression program (www.7-zip.org). LZMA provides high
15 7z ANSI-C Decoder is part of the LZMA SDK.
21 7zDecode.* - Low level 7z decoding
22 7zExtract.* - High level 7z decoding
23 7zHeader.* - .7z format constants
24 7zIn.* - .7z archive opening
25 7zItem.* - .7z structures
26 7zMain.c - Test application
32 You can create .7z archive with 7z.exe, 7za.exe or 7zr.exe:
34 7z.exe a archive.7z *.htm -r -mx -m0fb=255
39 7za.exe a archive.7z *.htm -ms=512K -r -mx -m0fb=255 -m0d=512K
41 In that example 7-Zip will use 512KB solid blocks. So it needs to decompress only
45 Limitations of current version of 7z ANSI-C Decoder
55 Using 7z ANSI-C Decoder Test application:
58 Usage: 7zDec <command> <archive_name>
67 7zDec l archive.7z
69 lists contents of archive.7z
71 7zDec e archive.7z
73 extracts files from archive.7z to current folder.
76 How to use .7z Decoder
82 7z Decoder uses two memory pools:
88 Steps for using 7z decoder
91 Use code at 7zMain.c as example.
95 CSzArEx db; /* 7z archive database structure */
114 Use SzArEx_GetFileNameUtf16 function. Look example code in C\Util\7z\7zMain.c file.
147 Memory requirements for .7z decoding
152 - Memory for uncompressed .7z headers
172 7z Decoder doesn't allocate memory for compressed blocks.
174 size before calling 7z Decoder. Use 7zMain.c as example.
185 http://www.7-zip.org
186 http://www.7-zip.org/sdk.html
187 http://www.7-zip.org/support.html