Edit File by line
/home/barbar84/public_h.../wp-conte.../plugins/sujqvwi/ShExBy/shex_roo.../usr/include/lzma
File: lzma12.h
/**
[0] Fix | Delete
* \file lzma/lzma12.h
[1] Fix | Delete
* \brief LZMA1 and LZMA2 filters
[2] Fix | Delete
*/
[3] Fix | Delete
[4] Fix | Delete
/*
[5] Fix | Delete
* Author: Lasse Collin
[6] Fix | Delete
*
[7] Fix | Delete
* This file has been put into the public domain.
[8] Fix | Delete
* You can do whatever you want with this file.
[9] Fix | Delete
*
[10] Fix | Delete
* See ../lzma.h for information about liblzma as a whole.
[11] Fix | Delete
*/
[12] Fix | Delete
[13] Fix | Delete
#ifndef LZMA_H_INTERNAL
[14] Fix | Delete
# error Never include this file directly. Use <lzma.h> instead.
[15] Fix | Delete
#endif
[16] Fix | Delete
[17] Fix | Delete
[18] Fix | Delete
/**
[19] Fix | Delete
* \brief LZMA1 Filter ID
[20] Fix | Delete
*
[21] Fix | Delete
* LZMA1 is the very same thing as what was called just LZMA in LZMA Utils,
[22] Fix | Delete
* 7-Zip, and LZMA SDK. It's called LZMA1 here to prevent developers from
[23] Fix | Delete
* accidentally using LZMA when they actually want LZMA2.
[24] Fix | Delete
*
[25] Fix | Delete
* LZMA1 shouldn't be used for new applications unless you _really_ know
[26] Fix | Delete
* what you are doing. LZMA2 is almost always a better choice.
[27] Fix | Delete
*/
[28] Fix | Delete
#define LZMA_FILTER_LZMA1 LZMA_VLI_C(0x4000000000000001)
[29] Fix | Delete
[30] Fix | Delete
/**
[31] Fix | Delete
* \brief LZMA2 Filter ID
[32] Fix | Delete
*
[33] Fix | Delete
* Usually you want this instead of LZMA1. Compared to LZMA1, LZMA2 adds
[34] Fix | Delete
* support for LZMA_SYNC_FLUSH, uncompressed chunks (smaller expansion
[35] Fix | Delete
* when trying to compress uncompressible data), possibility to change
[36] Fix | Delete
* lc/lp/pb in the middle of encoding, and some other internal improvements.
[37] Fix | Delete
*/
[38] Fix | Delete
#define LZMA_FILTER_LZMA2 LZMA_VLI_C(0x21)
[39] Fix | Delete
[40] Fix | Delete
[41] Fix | Delete
/**
[42] Fix | Delete
* \brief Match finders
[43] Fix | Delete
*
[44] Fix | Delete
* Match finder has major effect on both speed and compression ratio.
[45] Fix | Delete
* Usually hash chains are faster than binary trees.
[46] Fix | Delete
*
[47] Fix | Delete
* If you will use LZMA_SYNC_FLUSH often, the hash chains may be a better
[48] Fix | Delete
* choice, because binary trees get much higher compression ratio penalty
[49] Fix | Delete
* with LZMA_SYNC_FLUSH.
[50] Fix | Delete
*
[51] Fix | Delete
* The memory usage formulas are only rough estimates, which are closest to
[52] Fix | Delete
* reality when dict_size is a power of two. The formulas are more complex
[53] Fix | Delete
* in reality, and can also change a little between liblzma versions. Use
[54] Fix | Delete
* lzma_raw_encoder_memusage() to get more accurate estimate of memory usage.
[55] Fix | Delete
*/
[56] Fix | Delete
typedef enum {
[57] Fix | Delete
LZMA_MF_HC3 = 0x03,
[58] Fix | Delete
/**<
[59] Fix | Delete
* \brief Hash Chain with 2- and 3-byte hashing
[60] Fix | Delete
*
[61] Fix | Delete
* Minimum nice_len: 3
[62] Fix | Delete
*
[63] Fix | Delete
* Memory usage:
[64] Fix | Delete
* - dict_size <= 16 MiB: dict_size * 7.5
[65] Fix | Delete
* - dict_size > 16 MiB: dict_size * 5.5 + 64 MiB
[66] Fix | Delete
*/
[67] Fix | Delete
[68] Fix | Delete
LZMA_MF_HC4 = 0x04,
[69] Fix | Delete
/**<
[70] Fix | Delete
* \brief Hash Chain with 2-, 3-, and 4-byte hashing
[71] Fix | Delete
*
[72] Fix | Delete
* Minimum nice_len: 4
[73] Fix | Delete
*
[74] Fix | Delete
* Memory usage:
[75] Fix | Delete
* - dict_size <= 32 MiB: dict_size * 7.5
[76] Fix | Delete
* - dict_size > 32 MiB: dict_size * 6.5
[77] Fix | Delete
*/
[78] Fix | Delete
[79] Fix | Delete
LZMA_MF_BT2 = 0x12,
[80] Fix | Delete
/**<
[81] Fix | Delete
* \brief Binary Tree with 2-byte hashing
[82] Fix | Delete
*
[83] Fix | Delete
* Minimum nice_len: 2
[84] Fix | Delete
*
[85] Fix | Delete
* Memory usage: dict_size * 9.5
[86] Fix | Delete
*/
[87] Fix | Delete
[88] Fix | Delete
LZMA_MF_BT3 = 0x13,
[89] Fix | Delete
/**<
[90] Fix | Delete
* \brief Binary Tree with 2- and 3-byte hashing
[91] Fix | Delete
*
[92] Fix | Delete
* Minimum nice_len: 3
[93] Fix | Delete
*
[94] Fix | Delete
* Memory usage:
[95] Fix | Delete
* - dict_size <= 16 MiB: dict_size * 11.5
[96] Fix | Delete
* - dict_size > 16 MiB: dict_size * 9.5 + 64 MiB
[97] Fix | Delete
*/
[98] Fix | Delete
[99] Fix | Delete
LZMA_MF_BT4 = 0x14
[100] Fix | Delete
/**<
[101] Fix | Delete
* \brief Binary Tree with 2-, 3-, and 4-byte hashing
[102] Fix | Delete
*
[103] Fix | Delete
* Minimum nice_len: 4
[104] Fix | Delete
*
[105] Fix | Delete
* Memory usage:
[106] Fix | Delete
* - dict_size <= 32 MiB: dict_size * 11.5
[107] Fix | Delete
* - dict_size > 32 MiB: dict_size * 10.5
[108] Fix | Delete
*/
[109] Fix | Delete
} lzma_match_finder;
[110] Fix | Delete
[111] Fix | Delete
[112] Fix | Delete
/**
[113] Fix | Delete
* \brief Test if given match finder is supported
[114] Fix | Delete
*
[115] Fix | Delete
* Return true if the given match finder is supported by this liblzma build.
[116] Fix | Delete
* Otherwise false is returned. It is safe to call this with a value that
[117] Fix | Delete
* isn't listed in lzma_match_finder enumeration; the return value will be
[118] Fix | Delete
* false.
[119] Fix | Delete
*
[120] Fix | Delete
* There is no way to list which match finders are available in this
[121] Fix | Delete
* particular liblzma version and build. It would be useless, because
[122] Fix | Delete
* a new match finder, which the application developer wasn't aware,
[123] Fix | Delete
* could require giving additional options to the encoder that the older
[124] Fix | Delete
* match finders don't need.
[125] Fix | Delete
*/
[126] Fix | Delete
extern LZMA_API(lzma_bool) lzma_mf_is_supported(lzma_match_finder match_finder)
[127] Fix | Delete
lzma_nothrow lzma_attr_const;
[128] Fix | Delete
[129] Fix | Delete
[130] Fix | Delete
/**
[131] Fix | Delete
* \brief Compression modes
[132] Fix | Delete
*
[133] Fix | Delete
* This selects the function used to analyze the data produced by the match
[134] Fix | Delete
* finder.
[135] Fix | Delete
*/
[136] Fix | Delete
typedef enum {
[137] Fix | Delete
LZMA_MODE_FAST = 1,
[138] Fix | Delete
/**<
[139] Fix | Delete
* \brief Fast compression
[140] Fix | Delete
*
[141] Fix | Delete
* Fast mode is usually at its best when combined with
[142] Fix | Delete
* a hash chain match finder.
[143] Fix | Delete
*/
[144] Fix | Delete
[145] Fix | Delete
LZMA_MODE_NORMAL = 2
[146] Fix | Delete
/**<
[147] Fix | Delete
* \brief Normal compression
[148] Fix | Delete
*
[149] Fix | Delete
* This is usually notably slower than fast mode. Use this
[150] Fix | Delete
* together with binary tree match finders to expose the
[151] Fix | Delete
* full potential of the LZMA1 or LZMA2 encoder.
[152] Fix | Delete
*/
[153] Fix | Delete
} lzma_mode;
[154] Fix | Delete
[155] Fix | Delete
[156] Fix | Delete
/**
[157] Fix | Delete
* \brief Test if given compression mode is supported
[158] Fix | Delete
*
[159] Fix | Delete
* Return true if the given compression mode is supported by this liblzma
[160] Fix | Delete
* build. Otherwise false is returned. It is safe to call this with a value
[161] Fix | Delete
* that isn't listed in lzma_mode enumeration; the return value will be false.
[162] Fix | Delete
*
[163] Fix | Delete
* There is no way to list which modes are available in this particular
[164] Fix | Delete
* liblzma version and build. It would be useless, because a new compression
[165] Fix | Delete
* mode, which the application developer wasn't aware, could require giving
[166] Fix | Delete
* additional options to the encoder that the older modes don't need.
[167] Fix | Delete
*/
[168] Fix | Delete
extern LZMA_API(lzma_bool) lzma_mode_is_supported(lzma_mode mode)
[169] Fix | Delete
lzma_nothrow lzma_attr_const;
[170] Fix | Delete
[171] Fix | Delete
[172] Fix | Delete
/**
[173] Fix | Delete
* \brief Options specific to the LZMA1 and LZMA2 filters
[174] Fix | Delete
*
[175] Fix | Delete
* Since LZMA1 and LZMA2 share most of the code, it's simplest to share
[176] Fix | Delete
* the options structure too. For encoding, all but the reserved variables
[177] Fix | Delete
* need to be initialized unless specifically mentioned otherwise.
[178] Fix | Delete
* lzma_lzma_preset() can be used to get a good starting point.
[179] Fix | Delete
*
[180] Fix | Delete
* For raw decoding, both LZMA1 and LZMA2 need dict_size, preset_dict, and
[181] Fix | Delete
* preset_dict_size (if preset_dict != NULL). LZMA1 needs also lc, lp, and pb.
[182] Fix | Delete
*/
[183] Fix | Delete
typedef struct {
[184] Fix | Delete
/**
[185] Fix | Delete
* \brief Dictionary size in bytes
[186] Fix | Delete
*
[187] Fix | Delete
* Dictionary size indicates how many bytes of the recently processed
[188] Fix | Delete
* uncompressed data is kept in memory. One method to reduce size of
[189] Fix | Delete
* the uncompressed data is to store distance-length pairs, which
[190] Fix | Delete
* indicate what data to repeat from the dictionary buffer. Thus,
[191] Fix | Delete
* the bigger the dictionary, the better the compression ratio
[192] Fix | Delete
* usually is.
[193] Fix | Delete
*
[194] Fix | Delete
* Maximum size of the dictionary depends on multiple things:
[195] Fix | Delete
* - Memory usage limit
[196] Fix | Delete
* - Available address space (not a problem on 64-bit systems)
[197] Fix | Delete
* - Selected match finder (encoder only)
[198] Fix | Delete
*
[199] Fix | Delete
* Currently the maximum dictionary size for encoding is 1.5 GiB
[200] Fix | Delete
* (i.e. (UINT32_C(1) << 30) + (UINT32_C(1) << 29)) even on 64-bit
[201] Fix | Delete
* systems for certain match finder implementation reasons. In the
[202] Fix | Delete
* future, there may be match finders that support bigger
[203] Fix | Delete
* dictionaries.
[204] Fix | Delete
*
[205] Fix | Delete
* Decoder already supports dictionaries up to 4 GiB - 1 B (i.e.
[206] Fix | Delete
* UINT32_MAX), so increasing the maximum dictionary size of the
[207] Fix | Delete
* encoder won't cause problems for old decoders.
[208] Fix | Delete
*
[209] Fix | Delete
* Because extremely small dictionaries sizes would have unneeded
[210] Fix | Delete
* overhead in the decoder, the minimum dictionary size is 4096 bytes.
[211] Fix | Delete
*
[212] Fix | Delete
* \note When decoding, too big dictionary does no other harm
[213] Fix | Delete
* than wasting memory.
[214] Fix | Delete
*/
[215] Fix | Delete
uint32_t dict_size;
[216] Fix | Delete
# define LZMA_DICT_SIZE_MIN UINT32_C(4096)
[217] Fix | Delete
# define LZMA_DICT_SIZE_DEFAULT (UINT32_C(1) << 23)
[218] Fix | Delete
[219] Fix | Delete
/**
[220] Fix | Delete
* \brief Pointer to an initial dictionary
[221] Fix | Delete
*
[222] Fix | Delete
* It is possible to initialize the LZ77 history window using
[223] Fix | Delete
* a preset dictionary. It is useful when compressing many
[224] Fix | Delete
* similar, relatively small chunks of data independently from
[225] Fix | Delete
* each other. The preset dictionary should contain typical
[226] Fix | Delete
* strings that occur in the files being compressed. The most
[227] Fix | Delete
* probable strings should be near the end of the preset dictionary.
[228] Fix | Delete
*
[229] Fix | Delete
* This feature should be used only in special situations. For
[230] Fix | Delete
* now, it works correctly only with raw encoding and decoding.
[231] Fix | Delete
* Currently none of the container formats supported by
[232] Fix | Delete
* liblzma allow preset dictionary when decoding, thus if
[233] Fix | Delete
* you create a .xz or .lzma file with preset dictionary, it
[234] Fix | Delete
* cannot be decoded with the regular decoder functions. In the
[235] Fix | Delete
* future, the .xz format will likely get support for preset
[236] Fix | Delete
* dictionary though.
[237] Fix | Delete
*/
[238] Fix | Delete
const uint8_t *preset_dict;
[239] Fix | Delete
[240] Fix | Delete
/**
[241] Fix | Delete
* \brief Size of the preset dictionary
[242] Fix | Delete
*
[243] Fix | Delete
* Specifies the size of the preset dictionary. If the size is
[244] Fix | Delete
* bigger than dict_size, only the last dict_size bytes are
[245] Fix | Delete
* processed.
[246] Fix | Delete
*
[247] Fix | Delete
* This variable is read only when preset_dict is not NULL.
[248] Fix | Delete
* If preset_dict is not NULL but preset_dict_size is zero,
[249] Fix | Delete
* no preset dictionary is used (identical to only setting
[250] Fix | Delete
* preset_dict to NULL).
[251] Fix | Delete
*/
[252] Fix | Delete
uint32_t preset_dict_size;
[253] Fix | Delete
[254] Fix | Delete
/**
[255] Fix | Delete
* \brief Number of literal context bits
[256] Fix | Delete
*
[257] Fix | Delete
* How many of the highest bits of the previous uncompressed
[258] Fix | Delete
* eight-bit byte (also known as `literal') are taken into
[259] Fix | Delete
* account when predicting the bits of the next literal.
[260] Fix | Delete
*
[261] Fix | Delete
* E.g. in typical English text, an upper-case letter is
[262] Fix | Delete
* often followed by a lower-case letter, and a lower-case
[263] Fix | Delete
* letter is usually followed by another lower-case letter.
[264] Fix | Delete
* In the US-ASCII character set, the highest three bits are 010
[265] Fix | Delete
* for upper-case letters and 011 for lower-case letters.
[266] Fix | Delete
* When lc is at least 3, the literal coding can take advantage of
[267] Fix | Delete
* this property in the uncompressed data.
[268] Fix | Delete
*
[269] Fix | Delete
* There is a limit that applies to literal context bits and literal
[270] Fix | Delete
* position bits together: lc + lp <= 4. Without this limit the
[271] Fix | Delete
* decoding could become very slow, which could have security related
[272] Fix | Delete
* results in some cases like email servers doing virus scanning.
[273] Fix | Delete
* This limit also simplifies the internal implementation in liblzma.
[274] Fix | Delete
*
[275] Fix | Delete
* There may be LZMA1 streams that have lc + lp > 4 (maximum possible
[276] Fix | Delete
* lc would be 8). It is not possible to decode such streams with
[277] Fix | Delete
* liblzma.
[278] Fix | Delete
*/
[279] Fix | Delete
uint32_t lc;
[280] Fix | Delete
# define LZMA_LCLP_MIN 0
[281] Fix | Delete
# define LZMA_LCLP_MAX 4
[282] Fix | Delete
# define LZMA_LC_DEFAULT 3
[283] Fix | Delete
[284] Fix | Delete
/**
[285] Fix | Delete
* \brief Number of literal position bits
[286] Fix | Delete
*
[287] Fix | Delete
* lp affects what kind of alignment in the uncompressed data is
[288] Fix | Delete
* assumed when encoding literals. A literal is a single 8-bit byte.
[289] Fix | Delete
* See pb below for more information about alignment.
[290] Fix | Delete
*/
[291] Fix | Delete
uint32_t lp;
[292] Fix | Delete
# define LZMA_LP_DEFAULT 0
[293] Fix | Delete
[294] Fix | Delete
/**
[295] Fix | Delete
* \brief Number of position bits
[296] Fix | Delete
*
[297] Fix | Delete
* pb affects what kind of alignment in the uncompressed data is
[298] Fix | Delete
* assumed in general. The default means four-byte alignment
[299] Fix | Delete
* (2^ pb =2^2=4), which is often a good choice when there's
[300] Fix | Delete
* no better guess.
[301] Fix | Delete
*
[302] Fix | Delete
* When the aligment is known, setting pb accordingly may reduce
[303] Fix | Delete
* the file size a little. E.g. with text files having one-byte
[304] Fix | Delete
* alignment (US-ASCII, ISO-8859-*, UTF-8), setting pb=0 can
[305] Fix | Delete
* improve compression slightly. For UTF-16 text, pb=1 is a good
[306] Fix | Delete
* choice. If the alignment is an odd number like 3 bytes, pb=0
[307] Fix | Delete
* might be the best choice.
[308] Fix | Delete
*
[309] Fix | Delete
* Even though the assumed alignment can be adjusted with pb and
[310] Fix | Delete
* lp, LZMA1 and LZMA2 still slightly favor 16-byte alignment.
[311] Fix | Delete
* It might be worth taking into account when designing file formats
[312] Fix | Delete
* that are likely to be often compressed with LZMA1 or LZMA2.
[313] Fix | Delete
*/
[314] Fix | Delete
uint32_t pb;
[315] Fix | Delete
# define LZMA_PB_MIN 0
[316] Fix | Delete
# define LZMA_PB_MAX 4
[317] Fix | Delete
# define LZMA_PB_DEFAULT 2
[318] Fix | Delete
[319] Fix | Delete
/** Compression mode */
[320] Fix | Delete
lzma_mode mode;
[321] Fix | Delete
[322] Fix | Delete
/**
[323] Fix | Delete
* \brief Nice length of a match
[324] Fix | Delete
*
[325] Fix | Delete
* This determines how many bytes the encoder compares from the match
[326] Fix | Delete
* candidates when looking for the best match. Once a match of at
[327] Fix | Delete
* least nice_len bytes long is found, the encoder stops looking for
[328] Fix | Delete
* better candidates and encodes the match. (Naturally, if the found
[329] Fix | Delete
* match is actually longer than nice_len, the actual length is
[330] Fix | Delete
* encoded; it's not truncated to nice_len.)
[331] Fix | Delete
*
[332] Fix | Delete
* Bigger values usually increase the compression ratio and
[333] Fix | Delete
* compression time. For most files, 32 to 128 is a good value,
[334] Fix | Delete
* which gives very good compression ratio at good speed.
[335] Fix | Delete
*
[336] Fix | Delete
* The exact minimum value depends on the match finder. The maximum
[337] Fix | Delete
* is 273, which is the maximum length of a match that LZMA1 and
[338] Fix | Delete
* LZMA2 can encode.
[339] Fix | Delete
*/
[340] Fix | Delete
uint32_t nice_len;
[341] Fix | Delete
[342] Fix | Delete
/** Match finder ID */
[343] Fix | Delete
lzma_match_finder mf;
[344] Fix | Delete
[345] Fix | Delete
/**
[346] Fix | Delete
* \brief Maximum search depth in the match finder
[347] Fix | Delete
*
[348] Fix | Delete
* For every input byte, match finder searches through the hash chain
[349] Fix | Delete
* or binary tree in a loop, each iteration going one step deeper in
[350] Fix | Delete
* the chain or tree. The searching stops if
[351] Fix | Delete
* - a match of at least nice_len bytes long is found;
[352] Fix | Delete
* - all match candidates from the hash chain or binary tree have
[353] Fix | Delete
* been checked; or
[354] Fix | Delete
* - maximum search depth is reached.
[355] Fix | Delete
*
[356] Fix | Delete
* Maximum search depth is needed to prevent the match finder from
[357] Fix | Delete
* wasting too much time in case there are lots of short match
[358] Fix | Delete
* candidates. On the other hand, stopping the search before all
[359] Fix | Delete
* candidates have been checked can reduce compression ratio.
[360] Fix | Delete
*
[361] Fix | Delete
* Setting depth to zero tells liblzma to use an automatic default
[362] Fix | Delete
* value, that depends on the selected match finder and nice_len.
[363] Fix | Delete
* The default is in the range [4, 200] or so (it may vary between
[364] Fix | Delete
* liblzma versions).
[365] Fix | Delete
*
[366] Fix | Delete
* Using a bigger depth value than the default can increase
[367] Fix | Delete
* compression ratio in some cases. There is no strict maximum value,
[368] Fix | Delete
* but high values (thousands or millions) should be used with care:
[369] Fix | Delete
* the encoder could remain fast enough with typical input, but
[370] Fix | Delete
* malicious input could cause the match finder to slow down
[371] Fix | Delete
* dramatically, possibly creating a denial of service attack.
[372] Fix | Delete
*/
[373] Fix | Delete
uint32_t depth;
[374] Fix | Delete
[375] Fix | Delete
/*
[376] Fix | Delete
* Reserved space to allow possible future extensions without
[377] Fix | Delete
* breaking the ABI. You should not touch these, because the names
[378] Fix | Delete
* of these variables may change. These are and will never be used
[379] Fix | Delete
* with the currently supported options, so it is safe to leave these
[380] Fix | Delete
* uninitialized.
[381] Fix | Delete
*/
[382] Fix | Delete
uint32_t reserved_int1;
[383] Fix | Delete
uint32_t reserved_int2;
[384] Fix | Delete
uint32_t reserved_int3;
[385] Fix | Delete
uint32_t reserved_int4;
[386] Fix | Delete
uint32_t reserved_int5;
[387] Fix | Delete
uint32_t reserved_int6;
[388] Fix | Delete
uint32_t reserved_int7;
[389] Fix | Delete
uint32_t reserved_int8;
[390] Fix | Delete
lzma_reserved_enum reserved_enum1;
[391] Fix | Delete
lzma_reserved_enum reserved_enum2;
[392] Fix | Delete
lzma_reserved_enum reserved_enum3;
[393] Fix | Delete
lzma_reserved_enum reserved_enum4;
[394] Fix | Delete
void *reserved_ptr1;
[395] Fix | Delete
void *reserved_ptr2;
[396] Fix | Delete
[397] Fix | Delete
} lzma_options_lzma;
[398] Fix | Delete
[399] Fix | Delete
[400] Fix | Delete
/**
[401] Fix | Delete
* \brief Set a compression preset to lzma_options_lzma structure
[402] Fix | Delete
*
[403] Fix | Delete
* 0 is the fastest and 9 is the slowest. These match the switches -0 .. -9
[404] Fix | Delete
* of the xz command line tool. In addition, it is possible to bitwise-or
[405] Fix | Delete
* flags to the preset. Currently only LZMA_PRESET_EXTREME is supported.
[406] Fix | Delete
* The flags are defined in container.h, because the flags are used also
[407] Fix | Delete
* with lzma_easy_encoder().
[408] Fix | Delete
*
[409] Fix | Delete
* The preset values are subject to changes between liblzma versions.
[410] Fix | Delete
*
[411] Fix | Delete
* This function is available only if LZMA1 or LZMA2 encoder has been enabled
[412] Fix | Delete
* when building liblzma.
[413] Fix | Delete
*
[414] Fix | Delete
* \return On success, false is returned. If the preset is not
[415] Fix | Delete
* supported, true is returned.
[416] Fix | Delete
*/
[417] Fix | Delete
extern LZMA_API(lzma_bool) lzma_lzma_preset(
[418] Fix | Delete
lzma_options_lzma *options, uint32_t preset) lzma_nothrow;
[419] Fix | Delete
[420] Fix | Delete
It is recommended that you Edit text format, this type of Fix handles quite a lot in one request
Function