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 '7zip/Archive/7z_C/7zDecode.h')
-rwxr-xr-x7zip/Archive/7z_C/7zDecode.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/7zip/Archive/7z_C/7zDecode.h b/7zip/Archive/7z_C/7zDecode.h
index d88129e8..74bb180f 100755
--- a/7zip/Archive/7z_C/7zDecode.h
+++ b/7zip/Archive/7z_C/7zDecode.h
@@ -9,11 +9,11 @@
#include "7zIn.h"
#endif
-SZ_RESULT SzDecode(CFileSize *packSizes, CFolder *folder,
+SZ_RESULT SzDecode(const CFileSize *packSizes, const CFolder *folder,
#ifdef _LZMA_IN_CB
ISzInStream *stream,
#else
- Byte *inBuffer,
+ const Byte *inBuffer,
#endif
Byte *outBuffer, size_t outSize,
size_t *outSizeProcessed, ISzAlloc *allocMain);