Mercurial > vba-linux
view src/win32/7zip/7z/C/LzmaEnc.h @ 4:5f6f2134e8ce
apu appears to not be used
author | Robert McIntyre <rlm@mit.edu> |
---|---|
date | Sat, 03 Mar 2012 10:35:58 -0600 |
parents | f9f4f1b99eed |
children |
line wrap: on
line source
1 /* LzmaEnc.h -- LZMA Encoder2 2008-10-04 : Igor Pavlov : Public domain */4 #ifndef __LZMAENC_H5 #define __LZMAENC_H7 #include "Types.h"9 #define LZMA_PROPS_SIZE 511 typedef struct _CLzmaEncProps12 {13 int level; /* 0 <= level <= 9 */14 UInt32 dictSize; /* (1 << 12) <= dictSize <= (1 << 27) for 32-bit version15 (1 << 12) <= dictSize <= (1 << 30) for 64-bit version16 default = (1 << 24) */17 int lc; /* 0 <= lc <= 8, default = 3 */18 int lp; /* 0 <= lp <= 4, default = 0 */19 int pb; /* 0 <= pb <= 4, default = 2 */20 int algo; /* 0 - fast, 1 - normal, default = 1 */21 int fb; /* 5 <= fb <= 273, default = 32 */22 int btMode; /* 0 - hashChain Mode, 1 - binTree mode - normal, default = 1 */23 int numHashBytes; /* 2, 3 or 4, default = 4 */24 UInt32 mc; /* 1 <= mc <= (1 << 30), default = 32 */25 unsigned writeEndMark; /* 0 - do not write EOPM, 1 - write EOPM, default = 0 */26 int numThreads; /* 1 or 2, default = 2 */27 } CLzmaEncProps;29 void LzmaEncProps_Init(CLzmaEncProps *p);30 void LzmaEncProps_Normalize(CLzmaEncProps *p);31 UInt32 LzmaEncProps_GetDictSize(const CLzmaEncProps *props2);34 /* ---------- CLzmaEncHandle Interface ---------- */36 /* LzmaEnc_* functions can return the following exit codes:37 Returns:38 SZ_OK - OK39 SZ_ERROR_MEM - Memory allocation error40 SZ_ERROR_PARAM - Incorrect paramater in props41 SZ_ERROR_WRITE - Write callback error.42 SZ_ERROR_PROGRESS - some break from progress callback43 SZ_ERROR_THREAD - errors in multithreading functions (only for Mt version)44 */46 typedef void * CLzmaEncHandle;48 CLzmaEncHandle LzmaEnc_Create(ISzAlloc *alloc);49 void LzmaEnc_Destroy(CLzmaEncHandle p, ISzAlloc *alloc, ISzAlloc *allocBig);50 SRes LzmaEnc_SetProps(CLzmaEncHandle p, const CLzmaEncProps *props);51 SRes LzmaEnc_WriteProperties(CLzmaEncHandle p, Byte *properties, SizeT *size);52 SRes LzmaEnc_Encode(CLzmaEncHandle p, ISeqOutStream *outStream, ISeqInStream *inStream,53 ICompressProgress *progress, ISzAlloc *alloc, ISzAlloc *allocBig);54 SRes LzmaEnc_MemEncode(CLzmaEncHandle p, Byte *dest, SizeT *destLen, const Byte *src, SizeT srcLen,55 int writeEndMark, ICompressProgress *progress, ISzAlloc *alloc, ISzAlloc *allocBig);57 /* ---------- One Call Interface ---------- */59 /* LzmaEncode60 Return code:61 SZ_OK - OK62 SZ_ERROR_MEM - Memory allocation error63 SZ_ERROR_PARAM - Incorrect paramater64 SZ_ERROR_OUTPUT_EOF - output buffer overflow65 SZ_ERROR_THREAD - errors in multithreading functions (only for Mt version)66 */68 SRes LzmaEncode(Byte *dest, SizeT *destLen, const Byte *src, SizeT srcLen,69 const CLzmaEncProps *props, Byte *propsEncoded, SizeT *propsSize, int writeEndMark,70 ICompressProgress *progress, ISzAlloc *alloc, ISzAlloc *allocBig);72 #endif