mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
Implement LFN namespace in FAT.
This commit is contained in:
@@ -77,6 +77,9 @@ namespace DiscImageChef.Filesystems.FAT
|
||||
const ushort FAT12_END_MASK = 0xFF8;
|
||||
const ushort FAT12_FORMATTED = 0xFF6;
|
||||
const ushort FAT12_BAD = 0xFF7;
|
||||
const byte LFN_ERASED = 0x80;
|
||||
const byte LFN_LAST = 0x40;
|
||||
const byte LFN_MASK = 0x1F;
|
||||
|
||||
readonly (string hash, string name)[] knownBootHashes =
|
||||
{
|
||||
@@ -209,7 +212,8 @@ namespace DiscImageChef.Filesystems.FAT
|
||||
enum Namespace
|
||||
{
|
||||
Dos,
|
||||
Nt
|
||||
Nt,
|
||||
Lfn
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user