1 // XpressDecoder.h 2 3 #ifndef ZIP7_INC_XPRESS_DECODER_H 4 #define ZIP7_INC_XPRESS_DECODER_H 5 6 #include "../../Common/MyTypes.h" 7 8 namespace NCompress { 9 namespace NXpress { 10 11 // (out) buffer size must be larger than (outSize) for the following value: 12 const unsigned kAdditionalOutputBufSize = 32; 13 14 HRESULT Decode_WithExceedWrite(const Byte *in, size_t inSize, Byte *out, size_t outSize); 15 16 }} 17 18 #endif 19