14 lines
265 B
C
14 lines
265 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 |