Parolin 0.7.9 6796
Console (soon DLLs) to do a tar like job
Loading...
Searching...
No Matches
easy_preset.h
Go to the documentation of this file.
1// SPDX-License-Identifier: 0BSD
2
4//
7//
8// Author: Lasse Collin
9//
11
12#ifndef LZMA_EASY_PRESET_H
13#define LZMA_EASY_PRESET_H
14
15#include "common.h"
16
17
18typedef struct {
22
24 lzma_options_lzma opt_lzma;
25
26 // Options for more filters can be added later, so this struct
27 // is not ready to be put into the public API.
28
30
31
34extern bool lzma_easy_preset(lzma_options_easy *easy, uint32_t preset);
35
36#endif
Filter options.
Definition filter.h:43
Definition easy_preset.h:16
Options specific to the LZMA1 and LZMA2 filters.
Definition lzma12.h:185
Definitions common to the whole liblzma library.
uint32_t preset
Definition container.h:259
const lzma_filter * filters
Definition container.h:315
#define LZMA_FILTERS_MAX
Maximum number of filters in a chain.
Definition filter.h:26
bool lzma_easy_preset(lzma_options_easy *easy, uint32_t preset)
Definition easy_preset.c:17