Files
BinaryObjectScanner/BurnOutSharp/ProtectionType/CDCheck.cs
2019-09-27 23:52:24 -07:00

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;
}
}
}