mirror of
https://github.com/SabreTools/BinaryObjectScanner.git
synced 2026-02-14 21:33:08 +00:00
Make interfaces public
This commit is contained in:
@@ -3,7 +3,7 @@
|
||||
/// <summary>
|
||||
/// Check a generic file for protection
|
||||
/// </summary>
|
||||
internal interface IContentCheck
|
||||
public interface IContentCheck
|
||||
{
|
||||
/// <summary>
|
||||
/// Check a path for protections based on file contents
|
||||
|
||||
@@ -5,7 +5,7 @@ namespace BurnOutSharp.Interfaces
|
||||
/// <summary>
|
||||
/// Check a Linear Executable (LE) for protection
|
||||
/// </summary>
|
||||
internal interface ILinearExecutableCheck
|
||||
public interface ILinearExecutableCheck
|
||||
{
|
||||
/// <summary>
|
||||
/// Check a path for protections based on file contents
|
||||
|
||||
@@ -5,7 +5,7 @@ namespace BurnOutSharp.Interfaces
|
||||
/// <summary>
|
||||
/// Check a New Executable (NE) for protection
|
||||
/// </summary>
|
||||
internal interface INewExecutableCheck
|
||||
public interface INewExecutableCheck
|
||||
{
|
||||
/// <summary>
|
||||
/// Check a path for protections based on file contents
|
||||
|
||||
@@ -9,7 +9,7 @@ namespace BurnOutSharp.Interfaces
|
||||
/// <remarks>
|
||||
/// These checks rely primarily on filenames and paths, not file contents
|
||||
/// </remarks>
|
||||
internal interface IPathCheck
|
||||
public interface IPathCheck
|
||||
{
|
||||
/// <summary>
|
||||
/// Check a file path for protections based on path name
|
||||
|
||||
@@ -5,7 +5,7 @@ namespace BurnOutSharp.Interfaces
|
||||
/// <summary>
|
||||
/// Check a Portable Executable (PE) for protection
|
||||
/// </summary>
|
||||
internal interface IPortableExecutableCheck
|
||||
public interface IPortableExecutableCheck
|
||||
{
|
||||
/// <summary>
|
||||
/// Check a path for protections based on file contents
|
||||
|
||||
@@ -11,7 +11,7 @@ namespace BurnOutSharp.Interfaces
|
||||
/// installer formats that may need to be "extracted" before they
|
||||
/// can be fully scanned.
|
||||
/// </remarks>
|
||||
internal interface IScannable
|
||||
public interface IScannable
|
||||
{
|
||||
/// <summary>
|
||||
/// Scan a file for all internal protections
|
||||
|
||||
Reference in New Issue
Block a user