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

BZip2Item.h « BZip2 « Archive « 7zip - github.com/kornelski/7z.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d7508ab9c66ea0413fdaed33b53f0c8277c732d5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// Archive/BZip2Item.h

#ifndef __ARCHIVE_BZIP2_ITEM_H
#define __ARCHIVE_BZIP2_ITEM_H

namespace NArchive {
namespace NBZip2 {
  
struct CItem
{
  UInt64 PackSize;
  UInt64 UnPackSize;
};

}}

#endif