Make interfaces public

This commit is contained in:
Matt Nadareski
2022-12-26 12:36:09 -08:00
parent 17cb1bf9b0
commit 702115c55a
6 changed files with 6 additions and 6 deletions

View File

@@ -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

View File

@@ -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

View File

@@ -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

View File

@@ -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

View File

@@ -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

View File

@@ -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