Last change
on this file since 108905 was 108905, checked in by vboxsync, 4 weeks ago |
liblzma-5.6.4: Applied and adjusted our liblzma changes to 5.6.4. jiraref:VBP-1613
|
-
Property svn:eol-style
set to
LF
-
Property svn:keywords
set to
Author Date Id Revision
|
File size:
750 bytes
|
Line | |
---|
1 | // SPDX-License-Identifier: 0BSD
|
---|
2 |
|
---|
3 | ///////////////////////////////////////////////////////////////////////////////
|
---|
4 | //
|
---|
5 | /// \file lzma2_decoder.h
|
---|
6 | /// \brief LZMA2 decoder
|
---|
7 | ///
|
---|
8 | // Authors: Igor Pavlov
|
---|
9 | // Lasse Collin
|
---|
10 | //
|
---|
11 | ///////////////////////////////////////////////////////////////////////////////
|
---|
12 |
|
---|
13 | #ifndef LZMA_LZMA2_DECODER_H
|
---|
14 | #define LZMA_LZMA2_DECODER_H
|
---|
15 |
|
---|
16 | #include "common.h"
|
---|
17 |
|
---|
18 | extern lzma_ret lzma_lzma2_decoder_init(lzma_next_coder *next,
|
---|
19 | const lzma_allocator *allocator,
|
---|
20 | const lzma_filter_info *filters);
|
---|
21 |
|
---|
22 | extern uint64_t lzma_lzma2_decoder_memusage(const void *options);
|
---|
23 |
|
---|
24 | extern lzma_ret lzma_lzma2_props_decode(
|
---|
25 | void **options, const lzma_allocator *allocator,
|
---|
26 | const uint8_t *props, size_t props_size);
|
---|
27 |
|
---|
28 | #endif
|
---|
Note:
See
TracBrowser
for help on using the repository browser.