]> icculus.org git repositories - icculus/xz.git/blob - src/liblzma/simple/simple_coder.h
b682f84f251e0093a21c52e26cab824916d08903
[icculus/xz.git] / src / liblzma / simple / simple_coder.h
1 ///////////////////////////////////////////////////////////////////////////////
2 //
3 /// \file       simple_coder.h
4 /// \brief      Wrapper for simple filters
5 //
6 //
7 //  Copyright (C) 2007 Lasse Collin
8 //
9 //  This library is free software; you can redistribute it and/or
10 //  modify it under the terms of the GNU Lesser General Public
11 //  License as published by the Free Software Foundation; either
12 //  version 2.1 of the License, or (at your option) any later version.
13 //
14 //  This library is distributed in the hope that it will be useful,
15 //  but WITHOUT ANY WARRANTY; without even the implied warranty of
16 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
17 //  Lesser General Public License for more details.
18 //
19 ///////////////////////////////////////////////////////////////////////////////
20
21 #ifndef LZMA_SIMPLE_CODER_H
22 #define LZMA_SIMPLE_CODER_H
23
24 #include "common.h"
25
26
27 extern lzma_ret lzma_simple_x86_encoder_init(lzma_next_coder *next,
28                 lzma_allocator *allocator, const lzma_filter_info *filters);
29
30 extern lzma_ret lzma_simple_x86_decoder_init(lzma_next_coder *next,
31                 lzma_allocator *allocator, const lzma_filter_info *filters);
32
33
34 extern lzma_ret lzma_simple_powerpc_encoder_init(lzma_next_coder *next,
35                 lzma_allocator *allocator, const lzma_filter_info *filters);
36
37 extern lzma_ret lzma_simple_powerpc_decoder_init(lzma_next_coder *next,
38                 lzma_allocator *allocator, const lzma_filter_info *filters);
39
40
41 extern lzma_ret lzma_simple_ia64_encoder_init(lzma_next_coder *next,
42                 lzma_allocator *allocator, const lzma_filter_info *filters);
43
44 extern lzma_ret lzma_simple_ia64_decoder_init(lzma_next_coder *next,
45                 lzma_allocator *allocator, const lzma_filter_info *filters);
46
47
48 extern lzma_ret lzma_simple_arm_encoder_init(lzma_next_coder *next,
49                 lzma_allocator *allocator, const lzma_filter_info *filters);
50
51 extern lzma_ret lzma_simple_arm_decoder_init(lzma_next_coder *next,
52                 lzma_allocator *allocator, const lzma_filter_info *filters);
53
54
55 extern lzma_ret lzma_simple_armthumb_encoder_init(lzma_next_coder *next,
56                 lzma_allocator *allocator, const lzma_filter_info *filters);
57
58 extern lzma_ret lzma_simple_armthumb_decoder_init(lzma_next_coder *next,
59                 lzma_allocator *allocator, const lzma_filter_info *filters);
60
61
62 extern lzma_ret lzma_simple_sparc_encoder_init(lzma_next_coder *next,
63                 lzma_allocator *allocator, const lzma_filter_info *filters);
64
65 extern lzma_ret lzma_simple_sparc_decoder_init(lzma_next_coder *next,
66                 lzma_allocator *allocator, const lzma_filter_info *filters);
67
68 #endif