mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-06 05:15:00 -06:00
21 lines
203 B
C++
Executable File
21 lines
203 B
C++
Executable File
// Archive/BZip2Item.h
|
|
|
|
#ifndef __ARCHIVE_BZIP2_ITEM_H
|
|
#define __ARCHIVE_BZIP2_ITEM_H
|
|
|
|
namespace NArchive {
|
|
namespace NBZip2 {
|
|
|
|
struct CItem
|
|
{
|
|
UInt64 PackSize;
|
|
UInt64 UnPackSize;
|
|
};
|
|
|
|
}}
|
|
|
|
#endif
|
|
|
|
|
|
|