mirror of
https://github.com/SabreTools/BinaryObjectScanner.git
synced 2026-02-11 05:35:15 +00:00
15 lines
344 B
C#
15 lines
344 B
C#
namespace BurnOutSharp.ProtectionType
|
|
{
|
|
public class CDCheck
|
|
{
|
|
public static string CheckContents(string fileContent)
|
|
{
|
|
if (fileContent.Contains("GetDriveType")
|
|
|| fileContent.Contains("GetVolumeInformation"))
|
|
return "CD Check";
|
|
|
|
return null;
|
|
}
|
|
}
|
|
}
|