[Enums] Add file output format (not to be confused with former DAT output format)

This commit is contained in:
Matt Nadareski
2016-10-25 15:12:07 -07:00
parent ab8e23769c
commit d884e45c04

View File

@@ -62,6 +62,24 @@
Type17 = 17,
}
/// <summary>
/// Output format for rebuilt files
/// </summary>
public enum OutputFormat
{
// Currently implemented
Folder = 0,
TorrentZip = 1,
TorrentGzip = 2,
// Currently unimplemented
Torrent7Zip = 3,
TorrentRar = 4,
TapeArchive = 5,
TorrentXZ = 6,
TorrentLrzip = 7,
}
/// <summary>
/// Zip open type
/// </summary>