diff options
Diffstat (limited to 'C/7z.h')
-rw-r--r-- | C/7z.h | 12 |
1 files changed, 6 insertions, 6 deletions
@@ -1,8 +1,8 @@ | |||
1 | /* 7z.h -- 7z interface | 1 | /* 7z.h -- 7z interface |
2 | 2018-07-02 : Igor Pavlov : Public domain */ | 2 | 2023-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 | |||
98 | UInt64 SzAr_GetFolderUnpackSize(const CSzAr *p, UInt32 folderIndex); | 98 | UInt64 SzAr_GetFolderUnpackSize(const CSzAr *p, UInt32 folderIndex); |
99 | 99 | ||
100 | SRes SzAr_DecodeFolder(const CSzAr *p, UInt32 folderIndex, | 100 | SRes 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 | ||
175 | SRes SzArEx_Extract( | 175 | SRes 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 | |||
196 | SZ_ERROR_FAIL | 196 | SZ_ERROR_FAIL |
197 | */ | 197 | */ |
198 | 198 | ||
199 | SRes SzArEx_Open(CSzArEx *p, ILookInStream *inStream, | 199 | SRes SzArEx_Open(CSzArEx *p, ILookInStreamPtr inStream, |
200 | ISzAllocPtr allocMain, ISzAllocPtr allocTemp); | 200 | ISzAllocPtr allocMain, ISzAllocPtr allocTemp); |
201 | 201 | ||
202 | EXTERN_C_END | 202 | EXTERN_C_END |