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:
@@ -36,11 +36,15 @@ namespace DiscImageChef.Filesystems.FATX
|
||||
{
|
||||
public partial class XboxFatPlugin
|
||||
{
|
||||
const uint FATX_MAGIC = 0x58544146;
|
||||
const uint FATX_CIGAM = 0x46415458;
|
||||
const byte UNUSED_DIRENTRY = 0x00;
|
||||
const byte DELETED_DIRENTRY = 0xE5;
|
||||
const byte MAX_FILENAME = 42;
|
||||
const uint FATX_MAGIC = 0x58544146;
|
||||
const uint FATX_CIGAM = 0x46415458;
|
||||
const byte UNUSED_DIRENTRY = 0x00;
|
||||
const byte DELETED_DIRENTRY = 0xE5;
|
||||
const byte MAX_FILENAME = 42;
|
||||
const int MAX_XFAT16_CLUSTERS = 65525;
|
||||
const int FAT_START = 4096;
|
||||
const uint FATX32_ID = 0xFFFFFFF8;
|
||||
const ushort FATX16_ID = 0xFFF8;
|
||||
|
||||
[Flags]
|
||||
enum Attributes : byte
|
||||
|
||||
Reference in New Issue
Block a user