using System.Collections.Generic; using Aaru.CommonTypes.Enums; namespace Aaru.Archives; public sealed partial class Stfs { #region IArchive Members /// public ErrorNumber ListXAttr(int entryNumber, out List xattrs) { xattrs = null; return ErrorNumber.NotSupported; } /// public ErrorNumber GetXattr(int entryNumber, string xattr, ref byte[] buffer) { buffer = null; return ErrorNumber.NotSupported; } #endregion }