mirror of
https://github.com/SabreTools/BinaryObjectScanner.git
synced 2026-02-14 13:46:03 +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;
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|