diff options
Diffstat (limited to 'LzmaEnc.h')
-rw-r--r-- | LzmaEnc.h | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/LzmaEnc.h b/LzmaEnc.h new file mode 100644 index 0000000..b607be8 --- /dev/null +++ b/LzmaEnc.h @@ -0,0 +1,17 @@ +/* LzmaEnc.h -- LZMA Encoder +2009-02-07 : Igor Pavlov : Public domain */ + + +/* ---------- CLzmaEncHandle Interface ---------- */ + +/* LzmaEnc_* functions can return the following exit codes: + SZ_OK - OK + SZ_ERROR_WRITE - Write callback error. +*/ + +typedef void * CLzmaEncHandle; + +CLzmaEncHandle LzmaEnc_Init( const int dict_size, const int match_len_limit, + const int infd, const int outfd ); +void LzmaEnc_Free(CLzmaEncHandle p); +int LzmaEnc_Encode(CLzmaEncHandle p); |