Home | History | Annotate | Download | only in C

Lines Matching defs:CLzmaEncHandle

39 /* ---------- CLzmaEncHandle Interface ---------- */

52 typedef void * CLzmaEncHandle;
54 CLzmaEncHandle LzmaEnc_Create(ISzAllocPtr alloc);
55 void LzmaEnc_Destroy(CLzmaEncHandle p, ISzAllocPtr alloc, ISzAllocPtr allocBig);
57 SRes LzmaEnc_SetProps(CLzmaEncHandle p, const CLzmaEncProps *props);
58 void LzmaEnc_SetDataSize(CLzmaEncHandle p, UInt64 expectedDataSiize);
59 SRes LzmaEnc_WriteProperties(CLzmaEncHandle p, Byte *properties, SizeT *size);
60 unsigned LzmaEnc_IsWriteEndMark(CLzmaEncHandle p);
62 SRes LzmaEnc_Encode(CLzmaEncHandle p, ISeqOutStream *outStream, ISeqInStream *inStream,
64 SRes LzmaEnc_MemEncode(CLzmaEncHandle p, Byte *dest, SizeT *destLen, const Byte *src, SizeT srcLen,