1207753Smm///////////////////////////////////////////////////////////////////////////////
2207753Smm//
3207753Smm/// \file       stream_encoder.h
4207753Smm/// \brief      Encodes .xz Streams
5207753Smm//
6207753Smm//  Author:     Lasse Collin
7207753Smm//
8207753Smm//  This file has been put into the public domain.
9207753Smm//  You can do whatever you want with this file.
10207753Smm//
11207753Smm///////////////////////////////////////////////////////////////////////////////
12207753Smm
13207753Smm#ifndef LZMA_STREAM_ENCODER_H
14207753Smm#define LZMA_STREAM_ENCODER_H
15207753Smm
16207753Smm#include "common.h"
17207753Smm
18207753Smm
19207753Smmextern lzma_ret lzma_stream_encoder_init(
20207753Smm		lzma_next_coder *next, lzma_allocator *allocator,
21207753Smm		const lzma_filter *filters, lzma_check check);
22207753Smm
23207753Smm#endif
24