stream_encoder.h revision 213700
1219820Sjeff///////////////////////////////////////////////////////////////////////////////
2219820Sjeff//
3219820Sjeff/// \file       stream_encoder.h
4219820Sjeff/// \brief      Encodes .xz Streams
5219820Sjeff//
6219820Sjeff//  Author:     Lasse Collin
7219820Sjeff//
8219820Sjeff//  This file has been put into the public domain.
9219820Sjeff//  You can do whatever you want with this file.
10219820Sjeff//
11219820Sjeff///////////////////////////////////////////////////////////////////////////////
12219820Sjeff
13219820Sjeff#ifndef LZMA_STREAM_ENCODER_H
14219820Sjeff#define LZMA_STREAM_ENCODER_H
15219820Sjeff
16219820Sjeff#include "common.h"
17219820Sjeff
18219820Sjeff
19219820Sjeffextern lzma_ret lzma_stream_encoder_init(
20219820Sjeff		lzma_next_coder *next, lzma_allocator *allocator,
21219820Sjeff		const lzma_filter *filters, lzma_check check);
22219820Sjeff
23219820Sjeff#endif
24219820Sjeff