using BinaryObjectScanner.Wrappers; namespace BinaryObjectScanner.Interfaces { /// /// Check a MS-DOS Executable (MZ) for protection /// public interface IMSDOSExecutableCheck { /// /// Check a path for protections based on file contents /// /// File to check for protection indicators /// MSDOS representing the read-in file /// True to include debug data, false otherwise /// String containing any protections found in the file string CheckMSDOSExecutable(string file, MSDOS mz, bool includeDebug); } }