XzEnc.h revision baa3858d3f5d128a5c8466b700098109edcad5f2
1/* XzEnc.h -- Xz Encode
22009-04-15 : Igor Pavlov : Public domain */
3
4#ifndef __XZ_ENC_H
5#define __XZ_ENC_H
6
7#include "Lzma2Enc.h"
8
9#include "Xz.h"
10
11#ifdef __cplusplus
12extern "C" {
13#endif
14
15SRes Xz_Encode(ISeqOutStream *outStream, ISeqInStream *inStream,
16    const CLzma2EncProps *lzma2Props, Bool useSubblock,
17    ICompressProgress *progress);
18
19SRes Xz_EncodeEmpty(ISeqOutStream *outStream);
20
21#ifdef __cplusplus
22}
23#endif
24
25#endif
26