1 /* XzEnc.h -- Xz Encode 2 2009-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 12 extern "C" { 13 #endif 14 15 SRes Xz_Encode(ISeqOutStream *outStream, ISeqInStream *inStream, 16 const CLzma2EncProps *lzma2Props, Bool useSubblock, 17 ICompressProgress *progress); 18 19 SRes Xz_EncodeEmpty(ISeqOutStream *outStream); 20 21 #ifdef __cplusplus 22 } 23 #endif 24 25 #endif 26