allow coexistance of N build and AC build.
[tomato.git] / release / src-rt-6.x / linux / linux-2.6 / scripts / squashfs / lzma / C / 7zip / Archive / 7z_C / 7zDecode.h
blob432b7ce3fcccc93617116b37481d6e3b317682e2
1 /* 7zDecode.h */
3 #ifndef __7Z_DECODE_H
4 #define __7Z_DECODE_H
6 #include "7zItem.h"
7 #include "7zAlloc.h"
8 #ifdef _LZMA_IN_CB
9 #include "7zIn.h"
10 #endif
12 SZ_RESULT SzDecode(const CFileSize *packSizes, const CFolder *folder,
13 #ifdef _LZMA_IN_CB
14 ISzInStream *stream,
15 #else
16 const Byte *inBuffer,
17 #endif
18 Byte *outBuffer, size_t outSize,
19 size_t *outSizeProcessed, ISzAlloc *allocMain);
21 #endif