mirror of
https://github.com/SabreTools/MPF.git
synced 2026-02-16 13:55:20 +00:00
34 lines
547 B
C#
34 lines
547 B
C#
namespace MPF.DD
|
|
{
|
|
/// <summary>
|
|
/// Supported DD commands
|
|
/// </summary>
|
|
public enum Command: int
|
|
{
|
|
NONE = 0, // For DD, this represents a normal dump
|
|
List,
|
|
}
|
|
|
|
/// <summary>
|
|
/// Supported DD flags
|
|
/// </summary>
|
|
public enum Flag : int
|
|
{
|
|
NONE = 0,
|
|
|
|
// Boolean flags
|
|
Progress,
|
|
Size,
|
|
|
|
// Int64 flags
|
|
BlockSize,
|
|
Count,
|
|
Seek,
|
|
Skip,
|
|
|
|
// String flags
|
|
Filter,
|
|
InputFile,
|
|
OutputFile,
|
|
}
|
|
} |