Welcome to mirror list, hosted at ThFree Co, Russian Federation.

7zDecode.h « 7z « Archive « C - github.com/kornelski/7z.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e19fe387d1b2fade668609f00d14b720095187fb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/* 7zDecode.h -- Decoding from 7z folder
2008-11-23 : Igor Pavlov : Public domain */

#ifndef __7Z_DECODE_H
#define __7Z_DECODE_H

#include "7zItem.h"

SRes SzDecode(const UInt64 *packSizes, const CSzFolder *folder,
    ILookInStream *stream, UInt64 startPos,
    Byte *outBuffer, size_t outSize, ISzAlloc *allocMain);

#endif