mirror of
https://github.com/SabreTools/MPF.git
synced 2026-07-02 17:24:48 +00:00
44 lines
648 B
C#
44 lines
648 B
C#
namespace MPF.ExecutionContexts.Redumper
|
|
{
|
|
/// <summary>
|
|
/// Drive type option
|
|
/// </summary>
|
|
public enum DriveType
|
|
{
|
|
NONE = 0,
|
|
|
|
GENERIC,
|
|
PLEXTOR,
|
|
MTK8A,
|
|
MTK8B,
|
|
MTK8C,
|
|
MTK3,
|
|
MTK2,
|
|
MTK2B,
|
|
}
|
|
|
|
/// <summary>
|
|
/// Drive read method option
|
|
/// </summary>
|
|
public enum ReadMethod
|
|
{
|
|
NONE = 0,
|
|
|
|
BE,
|
|
D8,
|
|
}
|
|
|
|
/// <summary>
|
|
/// Drive sector order option
|
|
/// </summary>
|
|
public enum SectorOrder
|
|
{
|
|
NONE = 0,
|
|
|
|
DATA_C2_SUB,
|
|
DATA_SUB_C2,
|
|
DATA_SUB,
|
|
DATA_C2,
|
|
}
|
|
}
|