Parolin 0.7.9 6796
Console (soon DLLs) to do a tar like job
Loading...
Searching...
No Matches
lzma2_decoder.h
Go to the documentation of this file.
1
2//
6// Authors: Igor Pavlov
7// Lasse Collin
8//
9// This file has been put into the public domain.
10// You can do whatever you want with this file.
11//
13
14#ifndef LZMA_LZMA2_DECODER_H
15#define LZMA_LZMA2_DECODER_H
16
17#include "common.h"
18
22
23extern uint64_t lzma_lzma2_decoder_memusage(const void *options);
24
26 void **options, const lzma_allocator *allocator,
27 const uint8_t *props, size_t props_size);
28
29#endif
Custom functions for memory handling.
Definition base.h:372
Definition common.h:177
Hold data and function pointers of the next filter in the chain.
Definition common.h:195
lzma_ret
Return values used by several functions in liblzma.
Definition base.h:57
const lzma_allocator * allocator
Definition block.h:377
const lzma_filter * filters
Definition container.h:315
const lzma_allocator const uint8_t * props
Definition filter.h:362
const lzma_options_lzma * options
Definition container.h:545
lzma_ret lzma_lzma2_decoder_init(lzma_next_coder *next, const lzma_allocator *allocator, const lzma_filter_info *filters)
Definition lzma2_decoder.c:258
uint64_t lzma_lzma2_decoder_memusage(const void *options)
Definition lzma2_decoder.c:271
lzma_ret lzma_lzma2_props_decode(void **options, const lzma_allocator *allocator, const uint8_t *props, size_t props_size)
Definition lzma2_decoder.c:279