namespace MPF.Processors
{
///
/// Enum for SecuROM scheme type
///
internal enum SecuROMScheme
{
Unknown,
///
/// No SecuROM, 0 Sectors
///
None,
///
/// SecuROM 1-2, 216 Sectors
///
PreV3,
///
/// SecuROM 3, 90 Sectors
///
V3,
///
/// SecuROM 4, 99 Sectors
///
V4,
///
/// SecuROM 4+, 11 Sectors
///
V4Plus,
}
}