6 Mar
2020
6 Mar
'20
6:14 p.m.
On Fri, Mar 6, 2020 at 6:33 AM degski via Boost
Why not use lzma(2)?
Anyway, I looked at the native API for lzma and typical usage looks like this: rc = elzma_compress_config(hand, ELZMA_LC_DEFAULT, ELZMA_LP_DEFAULT, ELZMA_PB_DEFAULT, 5, (1 << 20) /* 1mb */, format, inLen); ... rc = elzma_compress_run(hand, inputCallback, (void *) &ds, outputCallback, (void *) &ds); In other words, the same type of shitty C API found in ZLib - no thanks. Regards