Added debug mount() method.

This commit is contained in:
2016-07-22 00:43:22 +01:00
parent 99a70b360f
commit a702542649
25 changed files with 125 additions and 0 deletions

View File

@@ -229,6 +229,11 @@ namespace DiscImageChef.Filesystems
return Errno.NotImplemented;
}
public override Errno Mount(bool debug)
{
return Errno.NotImplemented;
}
public override Errno Unmount()
{
return Errno.NotImplemented;