Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2023-01-09 | liblzma: Remove common.h include from common/index.h. | Jia Tan | 1 | -0/+1 | |
common/index.h is needed by liblzma internally and tests. common.h will include and define many things that are not needed by the tests. Also, this prevents include order problems because both common.h and lzma.h define LZMA_API. On most platforms it results only in a warning but on Windows it would break the build as the definition in common.h must be used only for building liblzma itself. | |||||
2017-03-30 | liblzma: Make lzma_index_decoder_init() visible to other liblzma funcs. | Lasse Collin | 1 | -0/+24 | |
This is to allow other functions to use it without going via the public API (lzma_index_decoder()). |