Welcome to mirror list, hosted at ThFree Co, Russian Federation.

LzmaItem.h « Lzma « Archive « 7zip « CPP - github.com/kornelski/7z.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8fcae210c106a5c8ce17ffeba5162d191cdce0a9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
// Archive/LzmaItem.h

#ifndef __ARCHIVE_LZMA_ITEM_H
#define __ARCHIVE_LZMA_ITEM_H

#include "Common/Types.h"

#include "../../../../C/CpuArch.h"

namespace NArchive {
namespace NLzma {

struct CHeader
{
  UInt64 UnpackSize;
  bool IsThereFilter;
  Byte FilterMethod;
  Byte LzmaProps[5];

  UInt32 GetDicSize() const { return GetUi32(LzmaProps + 1); }
  bool HasUnpackSize() const { return (UnpackSize != (UInt64)(Int64)-1);  }
  unsigned GetHeaderSize() const { return 5 + 8 + (IsThereFilter ? 1 : 0); }
};

}}

#endif