7zDecode.h 401 B

123456789101112131415161718192021
  1. /* 7zDecode.h */
  2. #ifndef __7Z_DECODE_H
  3. #define __7Z_DECODE_H
  4. #include "7zItem.h"
  5. #include "7zAlloc.h"
  6. #ifdef _LZMA_IN_CB
  7. #include "7zIn.h"
  8. #endif
  9. SZ_RESULT SzDecode(const CFileSize *packSizes, const CFolder *folder,
  10. #ifdef _LZMA_IN_CB
  11. ISzInStream *stream, CFileSize startPos,
  12. #else
  13. const Byte *inBuffer,
  14. #endif
  15. Byte *outBuffer, size_t outSize, ISzAlloc *allocMain);
  16. #endif