mirror of
https://github.com/SabreTools/MPF.git
synced 2026-02-16 21:37:13 +00:00
* First part of cleanup * Second part of cleanup * Second part of cleanup, part two * Second part of cleanup, part three * Second part of cleanup, part four * Third part of cleanup * Fourth part of cleanup (nw) * Rebranding * Aaru-fication * Try to fix .NET Core builds * Strip out CD Check for false positives * Update DIC to 20200403 * Add .NET 4.8 to automated builds * Address a couple of TODOs * Typo * Aaru is up to date * Fix AppVeyor * Add new systems (fixes #196) * Fix build Co-authored-by: Matt Nadareski <mnadareski@mparticle.com>
68 lines
1.2 KiB
C#
68 lines
1.2 KiB
C#
namespace DICUI.DiscImageCreator
|
|
{
|
|
/// <summary>
|
|
/// Supported DiscImageCreator commands
|
|
/// </summary>
|
|
public enum Command : int
|
|
{
|
|
NONE = 0,
|
|
Audio,
|
|
BluRay,
|
|
Close,
|
|
CompactDisc,
|
|
Data,
|
|
DigitalVideoDisc,
|
|
Disk,
|
|
DriveSpeed,
|
|
Eject,
|
|
Floppy,
|
|
GDROM,
|
|
MDS,
|
|
Merge,
|
|
Reset,
|
|
SACD,
|
|
Start,
|
|
Stop,
|
|
Sub,
|
|
Swap,
|
|
XBOX,
|
|
XBOXSwap,
|
|
XGD2Swap,
|
|
XGD3Swap,
|
|
}
|
|
|
|
/// <summary>
|
|
/// Supported DiscImageCreator flags
|
|
/// </summary>
|
|
public enum Flag : int
|
|
{
|
|
NONE = 0,
|
|
AddOffset,
|
|
AMSF,
|
|
AtariJaguar,
|
|
BEOpcode,
|
|
C2Opcode,
|
|
CopyrightManagementInformation,
|
|
D8Opcode,
|
|
DisableBeep,
|
|
ForceUnitAccess,
|
|
MultiSession,
|
|
NoFixSubP,
|
|
NoFixSubQ,
|
|
NoFixSubQLibCrypt,
|
|
NoFixSubRtoW,
|
|
NoFixSubQSecuROM,
|
|
NoSkipSS,
|
|
Raw,
|
|
Reverse,
|
|
ScanAntiMod,
|
|
ScanFileProtect,
|
|
ScanSectorProtect,
|
|
SeventyFour,
|
|
SkipSector,
|
|
SubchannelReadLevel,
|
|
VideoNow,
|
|
VideoNowColor,
|
|
VideoNowXP,
|
|
}
|
|
} |