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

11 lines
283 B
C#

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();
}
}