Skeleton for reading Opera filesystem.

This commit is contained in:
2019-08-01 16:21:10 +01:00
parent 1890d6ac28
commit ba754e01a5
9 changed files with 177 additions and 77 deletions

View File

@@ -0,0 +1,11 @@
using System;
using System.Collections.Generic;
using DiscImageChef.CommonTypes.Structs;
namespace DiscImageChef.Filesystems
{
public partial class OperaFS
{
public Errno ReadDir(string path, out List<string> contents) => throw new NotImplementedException();
}
}