namespace MPF.Processors { /// /// Indicates the type of compression used for logs /// public enum LogCompression { /// /// PKZIP using DEFLATE level 5 /// DeflateDefault, /// /// PKZIP using DEFLATE level 9 /// DeflateMaximum, /// /// PKZIP using Zstd level 19 /// Zstd19, } /// /// 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, } }