using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace SabreTools.Helper
{
///
/// Possible DAT import classes
///
public enum DatType
{
none = 0,
Custom,
MAME,
NoIntro,
Redump,
TOSEC,
TruRip,
NonGood,
MaybeIntro,
Good,
}
///
/// Possible detected header type
///
public enum HeaderType
{
None = 0,
A7800,
FDS,
Lynx,
//N64,
NES,
PCE,
PSID,
SNES,
SPC,
}
///
/// Severity of the logging statement
///
public enum LogLevel
{
VERBOSE = 0,
USER,
WARNING,
ERROR,
}
///
/// Determines which type of duplicate a file is
///
public enum DupeType
{
None = 0,
InternalHash,
InternalAll,
ExternalHash,
ExternalAll,
}
public enum ForceMerging
{
None = 0,
Split,
Full,
}
public enum ForceNodump
{
None = 0,
Obsolete,
Required,
Ignore,
}
public enum ForcePacking
{
None = 0,
Zip,
Unzip,
}
public enum OutputFormat
{
Xml = 0,
ClrMamePro,
RomCenter,
DOSCenter,
MissFile,
}
}