MOXA linux-2.6.x / linux-2.6.19-uc1 from UC-7110-LX-BOOTLOADER-1.9_VERSION-4.2.tgz
[linux-2.6.19-moxart.git] / fs / squashfs / LzmaWrapper.h
blobaac7e04bb5d2b0f2211162e69352a51bc2ba5777
1 #ifndef __LZMA_WRAPPER_H__
2 #define __LZMA_WRAPPER_H__
5 #define LZMA_OK 0
6 #define LZMA_ERROR -1
7 #define LZMA_TOO_BIG -2
9 int lzma_inflate(unsigned char *source, int s_len, unsigned char *dest, int *d_len);
10 int lzma_init(unsigned char *data, int size);
11 int lzma_workspace_size(void);
13 #endif /*__LZMA_WRAPPER_H__*/