mirror of
https://github.com/SabreTools/MPF.git
synced 2026-07-02 17:24:48 +00:00
27 lines
421 B
C#
27 lines
421 B
C#
namespace MPF.ExecutionContexts.Redumper
|
|
{
|
|
/// <summary>
|
|
/// Drive read method option
|
|
/// </summary>
|
|
public enum ReadMethod
|
|
{
|
|
NONE = 0,
|
|
|
|
BE,
|
|
D8,
|
|
BE_CDDA,
|
|
}
|
|
|
|
/// <summary>
|
|
/// Drive sector order option
|
|
/// </summary>
|
|
public enum SectorOrder
|
|
{
|
|
NONE = 0,
|
|
|
|
DATA_C2_SUB,
|
|
DATA_SUB_C2,
|
|
DATA_SUB,
|
|
DATA_C2,
|
|
}
|
|
} |