mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
20 lines
684 B
C#
20 lines
684 B
C#
|
|
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();
|
||
|
|
}
|
||
|
|
}
|