Files
Aaru/DiscImageChef.Filesystems/Opera/Super.cs

20 lines
684 B
C#
Raw Normal View History

2019-08-01 16:21:10 +01:00
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<string, string> options, string @namespace) =>
throw new NotImplementedException();
public Errno Unmount() => throw new NotImplementedException();
public Errno StatFs(out FileSystemInfo stat) => throw new NotImplementedException();
}
}