files
kpack_c/lzma_c/LZMAEncoderApi.h

17 lines
287 B
C

#ifndef LZMA_ENCODER_API_H_
#define LZMA_ENCODER_API_H_
#include "common.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