misc/libphysfs/lzma/C/Archive/7z/7zDecode.h
branchui-scaling
changeset 15283 c4fd2813b127
parent 13390 0135e64c6c66
parent 15279 7ab5cf405686
child 15663 d92eeb468dad
equal deleted inserted replaced
13390:0135e64c6c66 15283:c4fd2813b127
     1 /* 7zDecode.h */
       
     2 
       
     3 #ifndef __7Z_DECODE_H
       
     4 #define __7Z_DECODE_H
       
     5 
       
     6 #include "7zItem.h"
       
     7 #include "7zAlloc.h"
       
     8 #ifdef _LZMA_IN_CB
       
     9 #include "7zIn.h"
       
    10 #endif
       
    11 
       
    12 SZ_RESULT SzDecode(const CFileSize *packSizes, const CFolder *folder,
       
    13     #ifdef _LZMA_IN_CB
       
    14     ISzInStream *stream, CFileSize startPos,
       
    15     #else
       
    16     const Byte *inBuffer,
       
    17     #endif
       
    18     Byte *outBuffer, size_t outSize, ISzAlloc *allocMain);
       
    19 
       
    20 #endif