mirror of
https://github.com/claunia/SabreTools.git
synced 2025-12-16 19:14:27 +00:00
[Flags] ExternalSplitType -> SplittingMode
This commit is contained in:
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user