From 27e4a6c4520a047410aabdf0aac0b9a6fae51b78 Mon Sep 17 00:00:00 2001 From: Matt Nadareski Date: Mon, 14 Mar 2022 11:31:57 -0700 Subject: [PATCH] Add comment to old interface --- BurnOutSharp/IContentCheck.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/BurnOutSharp/IContentCheck.cs b/BurnOutSharp/IContentCheck.cs index 4f602f27..53cbb9ca 100644 --- a/BurnOutSharp/IContentCheck.cs +++ b/BurnOutSharp/IContentCheck.cs @@ -15,6 +15,7 @@ namespace BurnOutSharp /// Byte array representing the file contents /// True to include debug data, false otherwise /// String containing any protections found in the file + /// This still includes PE and NE because this is primarily used for debug testing string CheckContents(string file, byte[] fileContent, bool includeDebug, PortableExecutable pex, NewExecutable nex); } }