mirror of
https://github.com/SabreTools/SabreTools.Serialization.git
synced 2026-05-06 20:43:36 +00:00
32 lines
968 B
C#
32 lines
968 B
C#
namespace SabreTools.Data.Models.XDVDFS
|
|
{
|
|
/// <see href="https://github.dev/Deterous/XboxKit/"/>
|
|
public static class Constants
|
|
{
|
|
/// <summary>
|
|
/// Number of bytes in a sector
|
|
/// </summary>
|
|
public const int SectorSize = 2048;
|
|
|
|
/// <summary>
|
|
/// Number of sectors reserved at beginning of volume
|
|
/// </summary>
|
|
public const int ReservedSectors = 32;
|
|
|
|
/// <summary>
|
|
/// Minimum length of a directory record
|
|
/// </summary>
|
|
public const int MinimumRecordLength = 14;
|
|
|
|
/// <summary>
|
|
/// Volume Descriptor signature at start of sector 32
|
|
/// </summary>
|
|
public const string VolumeDescriptorSignature = "MICROSOFT*XBOX*MEDIA";
|
|
|
|
/// <summary>
|
|
/// Xbox DVD Layout Descriptor signature at start of sector 33
|
|
/// </summary>
|
|
public const string LayoutDescriptorSignature = "XBOX_DVD_LAYOUT_TOOL_SIG";
|
|
}
|
|
}
|