aboutsummaryrefslogtreecommitdiff
path: root/C/7z.h
diff options
context:
space:
mode:
Diffstat (limited to 'C/7z.h')
-rw-r--r--C/7z.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/C/7z.h b/C/7z.h
index 304f75f..9e27c01 100644
--- a/C/7z.h
+++ b/C/7z.h
@@ -1,8 +1,8 @@
1/* 7z.h -- 7z interface 1/* 7z.h -- 7z interface
22018-07-02 : Igor Pavlov : Public domain */ 22023-04-02 : Igor Pavlov : Public domain */
3 3
4#ifndef __7Z_H 4#ifndef ZIP7_INC_7Z_H
5#define __7Z_H 5#define ZIP7_INC_7Z_H
6 6
7#include "7zTypes.h" 7#include "7zTypes.h"
8 8
@@ -98,7 +98,7 @@ typedef struct
98UInt64 SzAr_GetFolderUnpackSize(const CSzAr *p, UInt32 folderIndex); 98UInt64 SzAr_GetFolderUnpackSize(const CSzAr *p, UInt32 folderIndex);
99 99
100SRes SzAr_DecodeFolder(const CSzAr *p, UInt32 folderIndex, 100SRes SzAr_DecodeFolder(const CSzAr *p, UInt32 folderIndex,
101 ILookInStream *stream, UInt64 startPos, 101 ILookInStreamPtr stream, UInt64 startPos,
102 Byte *outBuffer, size_t outSize, 102 Byte *outBuffer, size_t outSize,
103 ISzAllocPtr allocMain); 103 ISzAllocPtr allocMain);
104 104
@@ -174,7 +174,7 @@ UInt16 *SzArEx_GetFullNameUtf16_Back(const CSzArEx *p, size_t fileIndex, UInt16
174 174
175SRes SzArEx_Extract( 175SRes SzArEx_Extract(
176 const CSzArEx *db, 176 const CSzArEx *db,
177 ILookInStream *inStream, 177 ILookInStreamPtr inStream,
178 UInt32 fileIndex, /* index of file */ 178 UInt32 fileIndex, /* index of file */
179 UInt32 *blockIndex, /* index of solid block */ 179 UInt32 *blockIndex, /* index of solid block */
180 Byte **outBuffer, /* pointer to pointer to output buffer (allocated with allocMain) */ 180 Byte **outBuffer, /* pointer to pointer to output buffer (allocated with allocMain) */
@@ -196,7 +196,7 @@ SZ_ERROR_INPUT_EOF
196SZ_ERROR_FAIL 196SZ_ERROR_FAIL
197*/ 197*/
198 198
199SRes SzArEx_Open(CSzArEx *p, ILookInStream *inStream, 199SRes SzArEx_Open(CSzArEx *p, ILookInStreamPtr inStream,
200 ISzAllocPtr allocMain, ISzAllocPtr allocTemp); 200 ISzAllocPtr allocMain, ISzAllocPtr allocTemp);
201 201
202EXTERN_C_END 202EXTERN_C_END