mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-06 04:50:26 +00:00
7e7429e3d2
SVN r1545 (trunk)
13 lines
340 B
C
13 lines
340 B
C
/* 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
|