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

11 lines
283 B
C#
Raw Normal View History

2019-08-01 16:21:10 +01:00
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();
}
}