mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
Calculate size of Xbox FAT and read it to memory.
This commit is contained in:
@@ -33,6 +33,7 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
using DiscImageChef.CommonTypes;
|
||||
using DiscImageChef.CommonTypes.Interfaces;
|
||||
using DiscImageChef.CommonTypes.Structs;
|
||||
using Schemas;
|
||||
@@ -41,6 +42,18 @@ namespace DiscImageChef.Filesystems.FATX
|
||||
{
|
||||
public partial class XboxFatPlugin : IReadOnlyFilesystem
|
||||
{
|
||||
ushort[] fat16;
|
||||
uint[] fat32;
|
||||
ulong fatStartSector;
|
||||
ulong firstClusterSector;
|
||||
IMediaImage imagePlugin;
|
||||
bool littleEndian;
|
||||
bool mounted;
|
||||
Partition partition;
|
||||
uint sectorsPerCluster;
|
||||
FileSystemInfo stat;
|
||||
|
||||
Superblock superblock;
|
||||
public FileSystemType XmlFsType { get; private set; }
|
||||
public Encoding Encoding { get; private set; }
|
||||
public string Name => "FATX Filesystem Plugin";
|
||||
|
||||
Reference in New Issue
Block a user