I want to decompress data that is compressed by using LZMA SDK in MASM32 program.
I found some assembly files such as LzmaDecOpt.asm in the LZMA SDK.
https://github.com/kornelski/7z/blob/main/Asm/x86/LzmaDecOpt.asm
I think this is the decompressor of LZMA for Assembly program.
But I can't understand how to use this to decompress data.
Please explain how to use this to decompress in MASM32 program.