namespace SabreTools.Data.Models.STFS { /// public static class Constants { /// /// STFS LIVE magic number ("LIVE") /// public static readonly byte[] MagicBytesLIVE = [0x4C, 0x49, 0x56, 0x45]; /// /// STFS LIVE magic string ("LIVE") /// public const string MagicStringLIVE = "LIVE"; /// /// STFS PIRS magic number ("PIRS") /// public static readonly byte[] MagicBytesPIRS = [0x50, 0x49, 0x52, 0x53]; /// /// STFS PIRS magic string ("PIRS") /// public const string MagicStringPIRS = "PIRS"; /// /// STFS CON magic number ("CON ") /// public static readonly byte[] MagicBytesCON = [0x43, 0x4F, 0x4E, 0x20]; /// /// STFS CON magic string ("CON") /// public const string MagicStringCON = "CON "; /// /// Standard length of all fixed STFS header fields /// public const uint MinimumHeaderSize = 0x971A; /// /// System Update installer type magic string /// public const string InstallerTypeSystemUpdate = "SUPD"; /// /// Title Update installer type magic string /// public const string InstallerTypeTitleUpdate = "TUPD"; /// /// System Update Cache installer type magic string /// public const string InstallerTypeSystemUpdateCache = "P$SU"; /// /// Title Update Cache installer type magic string /// public const string InstallerTypeTitleUpdateCache = "P$TU"; /// /// Title Content Cache installer type magic string /// public const string InstallerTypeTitleContentCache = "P$TC"; } }