mirror of
https://github.com/SabreTools/MPF.git
synced 2026-02-15 21:35:44 +00:00
58 lines
997 B
C#
58 lines
997 B
C#
namespace MPF.Frontend
|
|
{
|
|
/// <summary>
|
|
/// Interface language
|
|
/// </summary>
|
|
public enum InterfaceLanguage
|
|
{
|
|
/// <summary>
|
|
/// Default to auto-detecting language
|
|
/// </summary>
|
|
AutoDetect = 0,
|
|
|
|
English,
|
|
Korean,
|
|
}
|
|
|
|
/// <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,
|
|
PS3CFW,
|
|
UmdImageCreator,
|
|
XboxBackupCreator,
|
|
}
|
|
|
|
/// <summary>
|
|
/// Log level for output
|
|
/// </summary>
|
|
public enum LogLevel
|
|
{
|
|
USER,
|
|
VERBOSE,
|
|
ERROR,
|
|
SECRET,
|
|
}
|
|
}
|