chovy-sign/CHOVY-JUAN/VolumeDescriptorType.cs

11 lines
206 B
C#

namespace DiscUtils.Iso9660
{
internal enum VolumeDescriptorType : byte
{
Boot = 0,
Primary = 1,
Supplementary = 2,
Partition = 3,
SetTerminator = 255
}
}