mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-10 22:07:08 -06:00
3.13
This commit is contained in:
34
7zip/Archive/Deb/DebItem.h
Executable file
34
7zip/Archive/Deb/DebItem.h
Executable file
@@ -0,0 +1,34 @@
|
||||
// Archive/Deb/ItemInfo.h
|
||||
|
||||
#pragma once
|
||||
|
||||
#ifndef __ARCHIVE_DEB_ITEMINFO_H
|
||||
#define __ARCHIVE_DEB_ITEMINFO_H
|
||||
|
||||
#include "Common/Types.h"
|
||||
#include "Common/String.h"
|
||||
#include "DebHeader.h"
|
||||
|
||||
namespace NArchive {
|
||||
namespace NDeb {
|
||||
|
||||
class CItem
|
||||
{
|
||||
public:
|
||||
AString Name;
|
||||
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; };
|
||||
};
|
||||
|
||||
}}
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user