mirror of
https://github.com/SabreTools/MPF.git
synced 2026-02-14 13:46:05 +00:00
* Initial XBC support * Complete but untested XBC support * Update changelog * Fix SS recreation bug * Parse XeMID from DMI * Nitpicks
70 lines
1.1 KiB
C#
70 lines
1.1 KiB
C#
namespace MPF.Core.Data
|
|
{
|
|
/// <summary>
|
|
/// Drive type for dumping
|
|
/// </summary>
|
|
public enum InternalDriveType
|
|
{
|
|
Optical,
|
|
Floppy,
|
|
HardDisk,
|
|
Removable,
|
|
}
|
|
|
|
/// <summary>
|
|
/// Program that is being used to dump media
|
|
/// </summary>
|
|
public enum InternalProgram
|
|
{
|
|
NONE = 0,
|
|
|
|
// Dumping support
|
|
Aaru,
|
|
DiscImageCreator,
|
|
Redumper,
|
|
|
|
// Verification support only
|
|
CleanRip,
|
|
DCDumper,
|
|
PS3CFW,
|
|
UmdImageCreator,
|
|
XboxBackupCreator,
|
|
}
|
|
|
|
/// <summary>
|
|
/// Drive read method option
|
|
/// </summary>
|
|
public enum RedumperReadMethod
|
|
{
|
|
NONE = 0,
|
|
|
|
BE,
|
|
D8,
|
|
BE_CDDA,
|
|
}
|
|
|
|
/// <summary>
|
|
/// Drive sector order option
|
|
/// </summary>
|
|
public enum RedumperSectorOrder
|
|
{
|
|
NONE = 0,
|
|
|
|
DATA_C2_SUB,
|
|
DATA_SUB_C2,
|
|
DATA_SUB,
|
|
DATA_C2,
|
|
}
|
|
|
|
/// <summary>
|
|
/// Log level for output
|
|
/// </summary>
|
|
public enum LogLevel
|
|
{
|
|
USER,
|
|
VERBOSE,
|
|
ERROR,
|
|
SECRET,
|
|
}
|
|
}
|