using System; using System.Collections.Generic; using Aaru.CommonTypes.Enums; using Aaru.CommonTypes.Interfaces; using Aaru.CommonTypes.Structs; using FileAttributes = System.IO.FileAttributes; namespace Aaru.Archives; public sealed partial class Stfs { #region IArchive Members /// public ErrorNumber GetCompressedSize(int entryNumber, out long length) => throw new NotImplementedException(); /// public ErrorNumber GetUncompressedSize(int entryNumber, out long length) => throw new NotImplementedException(); /// public ErrorNumber GetAttributes(int entryNumber, out FileAttributes attributes) => throw new NotImplementedException(); /// public ErrorNumber ListXAttr(int entryNumber, out List xattrs) => throw new NotImplementedException(); /// public ErrorNumber GetXattr(int entryNumber, string xattr, ref byte[] buffer) => throw new NotImplementedException(); /// public ErrorNumber Stat(int entryNumber, out FileEntryInfo stat) => throw new NotImplementedException(); /// public ErrorNumber GetEntry(int entryNumber, out IFilter filter) => throw new NotImplementedException(); #endregion }