mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
Added Lisa filesystem code.
This commit is contained in:
@@ -40,14 +40,36 @@ using System;
|
||||
|
||||
// All information by Natalia Portillo
|
||||
// Variable names from Lisa API
|
||||
using System.Collections.Generic;
|
||||
using DiscImageChef.ImagePlugins;
|
||||
|
||||
namespace DiscImageChef.Filesystems.LisaFS
|
||||
{
|
||||
partial class LisaFS : Filesystem
|
||||
{
|
||||
bool mounted;
|
||||
bool debug;
|
||||
readonly ImagePlugin device;
|
||||
|
||||
MDDF mddf;
|
||||
|
||||
#region Caches
|
||||
Dictionary<Int16, ExtentFile> extentCache;
|
||||
Dictionary<Int16, byte[]> systemFileCache;
|
||||
Dictionary<Int16, byte[]> fileCache;
|
||||
Dictionary<Int16, List<CatalogEntry>> catalogCache;
|
||||
Dictionary<Int16, Int32> fileSizeCache;
|
||||
#endregion Caches
|
||||
|
||||
public LisaFS()
|
||||
{
|
||||
Name = "Apple Lisa File System";
|
||||
PluginUUID = new Guid("7E6034D1-D823-4248-A54D-239742B28391");
|
||||
}
|
||||
|
||||
public LisaFS(ImagePlugins.ImagePlugin imagePlugin, ulong partitionStart, ulong partitionEnd)
|
||||
{
|
||||
device = imagePlugin;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user