diff options
author | Lasse Collin <lasse.collin@tukaani.org> | 2008-01-22 22:49:24 +0200 |
---|---|---|
committer | Lasse Collin <lasse.collin@tukaani.org> | 2008-01-22 22:49:24 +0200 |
commit | cf49f42a6bd40143f54a6b10d6e605599e958c0b (patch) | |
tree | 39cb9334863b938b34e208c2d89072dd447432cb /src/liblzma/api/lzma.h | |
parent | Fix Multi-Block Stream encoder's EOPM usage. (diff) | |
download | xz-cf49f42a6bd40143f54a6b10d6e605599e958c0b.tar.xz |
Added lzma_easy_* functions. These should make using
liblzma as easy as using zlib, because the easy API
don't require developers to know any fancy LZMA options.
Note that Multi-Block Stream encoding is currently broken.
The easy API should be OK, the bug(s) are elsewhere.
Diffstat (limited to '')
-rw-r--r-- | src/liblzma/api/lzma.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/liblzma/api/lzma.h b/src/liblzma/api/lzma.h index ad39d349..fedcd25b 100644 --- a/src/liblzma/api/lzma.h +++ b/src/liblzma/api/lzma.h @@ -111,6 +111,7 @@ extern "C" { #include "lzma/alone.h" #include "lzma/raw.h" #include "lzma/auto.h" +#include "lzma/easy.h" /* Advanced features */ #include "lzma/info.h" |