📄 lzmafiltersdecode.h
字号:
// LzmaFiltersDecode.h
#ifndef __LZMA_FILTERS_DECODE_H
#define __LZMA_FILTERS_DECODE_H
#include "../../Common/CreateCoder.h"
#include "LzmaItem.h"
namespace NArchive {
namespace NLzma {
class CDecoder
{
CMyComPtr<ICompressCoder> _lzmaDecoder;
CMyComPtr<ISequentialOutStream> _bcjStream;
public:
HRESULT Code(DECL_EXTERNAL_CODECS_LOC_VARS
const CHeader &block,
ISequentialInStream *inStream, ISequentialOutStream *outStream,
UInt64 *inProcessedSize, ICompressProgressInfo *progress);
};
}}
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -