⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 nsisdecode.h

📁 由7-zip提供的压缩、解压缩程序
💻 H
字号:
// NsisDecode.h#ifndef __NSIS_DECODE_H#define __NSIS_DECODE_H#include "../../IStream.h"#include "../Common/CoderLoader.h"namespace NArchive {namespace NNsis {namespace NMethodType{  enum EEnum  {    kCopy,    kDeflate,    kBZip2,    kLZMA  };}class CDecoder{  NMethodType::EEnum _method;  CCoderLibraries _libraries;  CMyComPtr<ISequentialInStream> _filterInStream;  CMyComPtr<ISequentialInStream> _codecInStream;  CMyComPtr<ISequentialInStream> _decoderInStream;public:  CDecoder();  void Release()  {    _filterInStream.Release();    _codecInStream.Release();    _decoderInStream.Release();  }  HRESULT Init(IInStream *inStream, NMethodType::EEnum method, bool thereIsFilterFlag, bool &useFilter);  HRESULT Read(void *data, UInt32 size, UInt32 *processedSize);};}}#endif

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -