Add skeleton for ISO9660 read-only implementation.

This commit is contained in:
2019-07-19 12:14:30 +01:00
parent ccb27ef822
commit 6d91450b28
6 changed files with 89 additions and 1 deletions

View File

@@ -0,0 +1,20 @@
using System;
using System.Collections.Generic;
using System.Text;
using DiscImageChef.CommonTypes;
using DiscImageChef.CommonTypes.Interfaces;
using DiscImageChef.CommonTypes.Structs;
namespace DiscImageChef.Filesystems.ISO9660
{
public partial class ISO9660
{
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();
}
}