mirror of
https://github.com/SabreTools/MPF.git
synced 2026-02-12 21:31:35 +00:00
33 lines
561 B
C#
33 lines
561 B
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,
|
|
DD,
|
|
DiscImageCreator,
|
|
Redumper,
|
|
|
|
// Verification support only
|
|
CleanRip,
|
|
DCDumper,
|
|
UmdImageCreator,
|
|
}
|
|
}
|