[Flags] ExternalSplitType -> SplittingMode

This commit is contained in:
Matt Nadareski
2017-11-08 21:39:04 -08:00
parent ed02bb2ca5
commit 7bfe18ac96
4 changed files with 30 additions and 30 deletions

View File

@@ -222,20 +222,6 @@ namespace SabreTools.Library.Data
ALL = 0xFFFFFFF,
}
/// <summary>
/// Determines how the DAT will be split on output
/// </summary>
[Flags]
public enum ExternalSplitType
{
None = 0x0,
Extension = 0x01,
Hash = Extension << 1,
Level = Hash << 1,
Type = Level << 1,
}
/// <summary>
/// Determine what hashes to strip from the DAT
/// </summary>
@@ -271,6 +257,20 @@ namespace SabreTools.Library.Data
All = Textfile | HTML | CSV | TSV,
}
/// <summary>
/// Determines how the DAT will be split on output
/// </summary>
[Flags]
public enum SplittingMode
{
None = 0x0,
Extension = 0x01,
Hash = Extension << 1,
Level = Hash << 1,
Type = Level << 1,
}
/// <summary>
/// Determines special update modes
/// </summary>