mirror of
https://github.com/SabreTools/MPF.git
synced 2026-05-07 04:53:57 +00:00
* Update redumper to build 549 * Add more redumper tests * Add type * Support .flip and .cache outputs * Fix typo * Fix test name * Update tests * Update tests again * Don't check dmi/pfi/ss hashes against redump * Fix incorrect flag * Get last SCSI error count * Fix test * Fix test again * Fix test finally * Fix test final * Review * SACD doesn't need skeleton * Proper SACD system handling * Final final * delete
30 lines
1.2 KiB
C#
30 lines
1.2 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 Subchannel = "subchannel";
|
|
public const string Debug = "debug";
|
|
public const string FixMSF = "fixmsf";
|
|
public const string DebugFlip = "debug::flip";
|
|
public const string DriveTest = "drive::test";
|
|
}
|
|
} |