files
kpack_c/lzma_c/LZMAEncoderApi.h
rgimad 244e5c92f8 lzma_c: no need to rebuild for using in kpack/kerpack, cleanup
Removed samples, converted indentation to spaces, translated to english, added header for exporting functions.
Added is_kerpack argument to lzma_compress() to make it usable either for kpack and kerpack without rebuild
2025-03-22 18:57:47 +03:00

15 lines
266 B
C

#ifndef LZMA_ENCODER_API_H_
#define LZMA_ENCODER_API_H_
void __stdcall lzma_set_dict_size(unsigned logdictsize);
unsigned __stdcall lzma_compress(
const void* source,
void* destination,
unsigned length,
void* workmem,
int is_kerpack
);
#endif