using System; using System.Collections.Generic; using System.Text; using DiscImageChef.CommonTypes; using DiscImageChef.CommonTypes.Interfaces; using DiscImageChef.CommonTypes.Structs; namespace DiscImageChef.Filesystems { public partial class OperaFS { public Errno Mount(IMediaImage imagePlugin, Partition partition, Encoding encoding, Dictionary options, string @namespace) => throw new NotImplementedException(); public Errno Unmount() => throw new NotImplementedException(); public Errno StatFs(out FileSystemInfo stat) => throw new NotImplementedException(); } }