mirror of
https://github.com/aaru-dps/Aaru.Server.git
synced 2025-12-16 19:24:27 +00:00
Refactor ISO9660 and solves bug preventing amiga extensions from being named.
This commit is contained in:
@@ -34,12 +34,12 @@ namespace DiscImageChef.Filesystems.ISO9660
|
||||
{
|
||||
public partial class ISO9660
|
||||
{
|
||||
const ushort SUSP_Continuation = 0x4345; // "CE"
|
||||
const ushort SUSP_Padding = 0x5044; // "PD"
|
||||
const ushort SUSP_Indicator = 0x5350; // "SP"
|
||||
const ushort SUSP_Terminator = 0x5354; // "ST"
|
||||
const ushort SUSP_Reference = 0x4552; // "ER"
|
||||
const ushort SUSP_Selector = 0x4553; // "ES"
|
||||
const ushort SUSP_Magic = 0xBEEF;
|
||||
const ushort SUSP_CONTINUATION = 0x4345; // "CE"
|
||||
const ushort SUSP_PADDING = 0x5044; // "PD"
|
||||
const ushort SUSP_INDICATOR = 0x5350; // "SP"
|
||||
const ushort SUSP_TERMINATOR = 0x5354; // "ST"
|
||||
const ushort SUSP_REFERENCE = 0x4552; // "ER"
|
||||
const ushort SUSP_SELECTOR = 0x4553; // "ES"
|
||||
const ushort SUSP_MAGIC = 0xBEEF;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user