namespace BurnOutSharp
{
///
/// Subset of file types that are supported by the library
///
public enum SupportedFileType
{
///
/// Unknown or unsupported
///
UNKNOWN,
///
/// BFPK custom archive
///
BFPK,
///
/// bzip2 archive
///
BZip2,
///
/// Executable or library
///
Executable,
///
/// gzip archive
///
GZIP,
///
/// Key-value pair INI file
///
IniFile,
///
/// InstallShield archive v3
///
InstallShieldArchiveV3,
///
/// InstallShield cabinet file
///
InstallShieldCAB,
///
/// Microsoft cabinet file
///
MicrosoftCAB,
///
/// MPQ game data archive
///
MPQ,
///
/// Microsoft installation package
///
MSI,
///
/// PKWARE ZIP archive and derivatives
///
PKZIP,
///
/// PlayJ audio file
///
PLJ,
///
/// RAR archive
///
RAR,
///
/// 7-zip archive
///
SevenZip,
///
/// StarForce FileSystem file
///
SFFS,
///
/// Tape archive
///
TapeArchive,
///
/// Various generic textfile formats
///
Textfile,
///
/// Various Valve archive formats
///
Valve,
///
/// xz archive
///
XZ,
}
}