Expand description
Structs§
- Filters
 - A custom chain of filters to configure an encoding stream.
 - Lzma
Options  - Options that can be used to configure how LZMA encoding happens.
 - Stream
 - Representation of an in-memory LZMA encoding or decoding stream.
 
Enums§
- Action
 - The 
actionargument forStream::process, - Check
 - Possible integrity checks that can be part of a .xz stream.
 - Error
 - Possible error codes that can be returned from a processing operation.
 - Match
Finder  - Match finders
 - Mode
 - Compression modes
 - Status
 - Return value of a 
Stream::processoperation. 
Constants§
- CONCATENATED
 - A flag passed when initializing a decoder, indicates that the stream may be multiple concatenated xz files.
 - IGNORE_
CHECK  - A flag passed when initializing a decoder, causes the decoder to ignore any integrity checks listed.
 - TELL_
ANY_ CHECK  - A flag passed when initializing a decoder, causes 
Stream::processto returnStatus::GetCheckas soon as the integrity check is known. - TELL_
NO_ CHECK  - A flag passed when initializing a decoder, causes 
Stream::processto returnError::NoCheckif the stream being decoded has no integrity check. - TELL_
UNSUPPORTED_ CHECK  - A flag passed when initializing a decoder, causes 
Stream::processto returnError::UnsupportedCheckif the stream being decoded has an integrity check that cannot be verified by this build of liblzma.