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

github.com/kornelski/7z.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'C/Archive/7z/7zDecode.h')
-rwxr-xr-xC/Archive/7z/7zDecode.h19
1 files changed, 3 insertions, 16 deletions
diff --git a/C/Archive/7z/7zDecode.h b/C/Archive/7z/7zDecode.h
index 5b0996d7..e19fe387 100755
--- a/C/Archive/7z/7zDecode.h
+++ b/C/Archive/7z/7zDecode.h
@@ -1,26 +1,13 @@
/* 7zDecode.h -- Decoding from 7z folder
-2008-04-09
-Igor Pavlov
-Copyright (c) 1999-2008 Igor Pavlov
-Read 7zItem.h for license options */
+2008-11-23 : Igor Pavlov : Public domain */
#ifndef __7Z_DECODE_H
#define __7Z_DECODE_H
#include "7zItem.h"
-#include "7zIn.h"
-
-SRes SzDecode(const CFileSize *packSizes, const CSzFolder *folder,
- /*
- #ifdef _LZMA_IN_CB
- */
- ISzInStream *stream, CFileSize startPos,
- /*
- #else
- const Byte *inBuffer,
- #endif
- */
+SRes SzDecode(const UInt64 *packSizes, const CSzFolder *folder,
+ ILookInStream *stream, UInt64 startPos,
Byte *outBuffer, size_t outSize, ISzAlloc *allocMain);
#endif