using BurnOutSharp.ExecutableType.Microsoft.NE;
namespace BurnOutSharp
{
// TODO: This should either include an override that takes a Stream instead of the byte[]
internal interface INEContentCheck
{
///
/// Check a path for protections based on file contents
///
/// File to check for protection indicators
/// NewExecutable representing the read-in file
/// True to include debug data, false otherwise
/// String containing any protections found in the file
string CheckNEContents(string file, NewExecutable nex, bool includeDebug);
}
}