mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-10 14:07:11 -06:00
4.20
This commit is contained in:
committed by
Kornel Lesiński
parent
8c1b5c7b7e
commit
3c510ba80b
@@ -1,7 +1,5 @@
|
||||
// Archive/Deb/ItemInfo.h
|
||||
|
||||
#pragma once
|
||||
|
||||
#ifndef __ARCHIVE_DEB_ITEMINFO_H
|
||||
#define __ARCHIVE_DEB_ITEMINFO_H
|
||||
|
||||
@@ -16,17 +14,17 @@ class CItem
|
||||
{
|
||||
public:
|
||||
AString Name;
|
||||
UINT64 Size;
|
||||
UINT32 ModificationTime;
|
||||
UINT32 Mode;
|
||||
UInt64 Size;
|
||||
UInt32 ModificationTime;
|
||||
UInt32 Mode;
|
||||
};
|
||||
|
||||
class CItemEx: public CItem
|
||||
{
|
||||
public:
|
||||
UINT64 HeaderPosition;
|
||||
UINT64 GetDataPosition() const { return HeaderPosition + sizeof(NHeader::CHeader); };
|
||||
// UINT64 GetFullSize() const { return NFileHeader::kRecordSize + Size; };
|
||||
UInt64 HeaderPosition;
|
||||
UInt64 GetDataPosition() const { return HeaderPosition + NHeader::kHeaderSize; };
|
||||
// UInt64 GetFullSize() const { return NFileHeader::kRecordSize + Size; };
|
||||
};
|
||||
|
||||
}}
|
||||
|
||||
Reference in New Issue
Block a user