mirror of
https://github.com/aaru-dps/Aaru.git
synced 2026-07-08 17:56:18 +00:00
30 lines
726 B
C#
30 lines
726 B
C#
using System;
|
|
|
|
namespace Aaru.Archives;
|
|
|
|
public sealed partial class Arj
|
|
{
|
|
#region Nested type: Entry
|
|
|
|
struct Entry
|
|
{
|
|
public Method Method;
|
|
public string Filename;
|
|
public long CompressedSize;
|
|
public long UncompressedSize;
|
|
public long DataOffset;
|
|
public DateTime LastWriteTime;
|
|
public DateTime CreationTime;
|
|
public DateTime LastAccessTime;
|
|
public HostOs HostOs;
|
|
public uint FileCrc;
|
|
public ushort FileMode;
|
|
public byte ArjFlags;
|
|
public byte ArjxNbr;
|
|
public string Comment;
|
|
public byte[] ExtendedAttributes;
|
|
public bool IsDirectory;
|
|
}
|
|
|
|
#endregion
|
|
} |