]> icculus.org git repositories - icculus/xz.git/blob - src/liblzma/simple/simple_encoder.h
be4ca9fccaf26dba64358dfba56343c8f0de7482
[icculus/xz.git] / src / liblzma / simple / simple_encoder.h
1 ///////////////////////////////////////////////////////////////////////////////
2 //
3 /// \file       simple_encoder.c
4 /// \brief      Properties encoder for simple filters
5 //
6 //  Copyright (C) 2007-2008 Lasse Collin
7 //
8 //  This library is free software; you can redistribute it and/or
9 //  modify it under the terms of the GNU Lesser General Public
10 //  License as published by the Free Software Foundation; either
11 //  version 2.1 of the License, or (at your option) any later version.
12 //
13 //  This library is distributed in the hope that it will be useful,
14 //  but WITHOUT ANY WARRANTY; without even the implied warranty of
15 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16 //  Lesser General Public License for more details.
17 //
18 ///////////////////////////////////////////////////////////////////////////////
19
20 #ifndef LZMA_SIMPLE_ENCODER_H
21 #define LZMA_SIMPLE_ENCODER_H
22
23 #include "simple_coder.h"
24
25
26 extern lzma_ret lzma_simple_props_size(uint32_t *size, const void *options);
27
28 extern lzma_ret lzma_simple_props_encode(const void *options, uint8_t *out);
29
30 #endif