mirror of
https://github.com/SabreTools/MPF.git
synced 2026-02-14 05:36:10 +00:00
26 lines
938 B
C#
26 lines
938 B
C#
namespace MPF.ExecutionContexts.DiscImageCreator
|
|
{
|
|
public static class SettingConstants
|
|
{
|
|
public const string DVDRereadCount = "DICDVDRereadCount";
|
|
public const int DVDRereadCountDefault = 10;
|
|
|
|
public const string MultiSectorRead = "DICMultiSectorRead";
|
|
public const bool MultiSectorReadDefault = false;
|
|
|
|
public const string MultiSectorReadValue = "DICMultiSectorReadValue";
|
|
public const int MultiSectorReadValueDefault = 0;
|
|
|
|
public const string ParanoidMode = "DICParanoidMode";
|
|
public const bool ParanoidModeDefault = false;
|
|
|
|
public const string QuietMode = "DICQuietMode";
|
|
public const bool QuietModeDefault = false;
|
|
|
|
public const string RereadCount = "DICRereadCount";
|
|
public const int RereadCountDefault = 20;
|
|
|
|
public const string UseCMIFlag = "DICUseCMIFlag";
|
|
public const bool UseCMIFlagDefault = false;
|
|
}
|
|
} |