using BurnOutSharp.ExecutableType.Microsoft.LE;
namespace BurnOutSharp.Interfaces
{
///
/// Check a Linear Executable (LE) for protection
///
internal interface ILinearExecutableCheck
{
///
/// Check a path for protections based on file contents
///
/// File to check for protection indicators
/// LinearExecutable representing the read-in file
/// True to include debug data, false otherwise
/// String containing any protections found in the file
string CheckNewExecutable(string file, LinearExecutable lex, bool includeDebug);
}
}