DumpDVD/LZMA/lzma.h

16 lines
298 B
C

#ifndef _LI_LZMA2
#define _LI_LZMA2 1
#ifdef __cplusplus
extern "C" {
#endif
#include "Alloc.h"
#include "LzmaDec.h"
#include "Lzma2Dec.h"
#include <stdint.h>
int lzma2decompress(const unsigned char* in, uint32_t* in_len, unsigned char* out, uint32_t* out_len);
#ifdef __cplusplus
}
#endif
#endif