summaryrefslogtreecommitdiffstats
path: root/src/libs/7zip/unix/C/XzEnc.h
blob: 13390df8b37270a75c3326d72a39f5ae302bb416 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
/* XzEnc.h -- Xz Encode
2009-04-15 : Igor Pavlov : Public domain */

#ifndef __XZ_ENC_H
#define __XZ_ENC_H

#include "Lzma2Enc.h"

#include "Xz.h"

#ifdef __cplusplus
extern "C" {
#endif

SRes Xz_Encode(ISeqOutStream *outStream, ISeqInStream *inStream,
    const CLzma2EncProps *lzma2Props, Bool useSubblock,
    ICompressProgress *progress);

SRes Xz_EncodeEmpty(ISeqOutStream *outStream);

#ifdef __cplusplus
}
#endif

#endif