mirror of
https://github.com/SabreTools/MPF.git
synced 2026-02-14 21:33:29 +00:00
33 lines
1.3 KiB
C#
33 lines
1.3 KiB
C#
namespace MPF.ExecutionContexts.Redumper
|
|
{
|
|
/// <summary>
|
|
/// Top-level commands for Redumper
|
|
/// </summary>
|
|
public static class CommandStrings
|
|
{
|
|
public const string NONE = "";
|
|
public const string Disc = "disc";
|
|
public const string Rings = "rings";
|
|
public const string Dump = "dump";
|
|
public const string DumpExtra = "dump::extra";
|
|
public const string Refine = "refine";
|
|
public const string Verify = "verify";
|
|
public const string DVDKey = "dvdkey";
|
|
public const string Eject = "eject";
|
|
public const string DVDIsoKey = "dvdisokey";
|
|
public const string Protection = "protection";
|
|
public const string Split = "split";
|
|
public const string Hash = "hash";
|
|
public const string Info = "info";
|
|
public const string Skeleton = "skeleton";
|
|
public const string FlashMT1339 = "flash::mt1339";
|
|
public const string FlashSD616 = "flash::sd616";
|
|
public const string FlashPlextor = "flash::plextor";
|
|
public const string Subchannel = "subchannel";
|
|
public const string Debug = "debug";
|
|
public const string FixMSF = "fixmsf";
|
|
public const string DebugFlip = "debug::flip";
|
|
public const string DriveTest = "drive::test";
|
|
}
|
|
}
|