Annotation of elwix/tools/oldlzma/SRC/7zip/Archive/7z_C/7zExtract.h, revision 1.1

1.1     ! misho       1: /* 7zExtract.h */
        !             2: 
        !             3: #ifndef __7Z_EXTRACT_H
        !             4: #define __7Z_EXTRACT_H
        !             5: 
        !             6: #include "7zIn.h"
        !             7: 
        !             8: SZ_RESULT SzExtract(
        !             9:     ISzInStream *inStream, 
        !            10:     CArchiveDatabaseEx *db,
        !            11:     UInt32 fileIndex,         /* index of file */
        !            12:     UInt32 *blockIndex,       /* index of solid block */
        !            13:     Byte **outBuffer,         /* pointer to pointer to output buffer (allocated with allocMain) */
        !            14:     size_t *outBufferSize,    /* buffer size for output buffer */
        !            15:     size_t *offset,           /* offset of stream for required file in *outBuffer */
        !            16:     size_t *outSizeProcessed, /* size of file in *outBuffer */
        !            17:     ISzAlloc *allocMain,
        !            18:     ISzAlloc *allocTemp);
        !            19: 
        !            20: #endif

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>