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
15 lines
266 B
C
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
|