mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
Skeleton for reading Opera filesystem.
This commit is contained in:
16
DiscImageChef.Filesystems/Opera/File.cs
Normal file
16
DiscImageChef.Filesystems/Opera/File.cs
Normal file
@@ -0,0 +1,16 @@
|
||||
using System;
|
||||
using DiscImageChef.CommonTypes.Structs;
|
||||
|
||||
namespace DiscImageChef.Filesystems
|
||||
{
|
||||
public partial class OperaFS
|
||||
{
|
||||
public Errno MapBlock(string path, long fileBlock, out long deviceBlock) => throw new NotImplementedException();
|
||||
|
||||
public Errno GetAttributes(string path, out FileAttributes attributes) => throw new NotImplementedException();
|
||||
|
||||
public Errno Read(string path, long offset, long size, ref byte[] buf) => throw new NotImplementedException();
|
||||
|
||||
public Errno Stat(string path, out FileEntryInfo stat) => throw new NotImplementedException();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user