Detect-It-Easy/db/PE/PureBasic.3.sg
2014-06-01 23:42:39 +02:00

19 lines
441 B
Text

// DIE's signature file
init("compiler","PureBasic");
function detect(bShowType,bShowVersion,bShowOptions)
{
if(PE.compareEP("68....0000680000000068......00E8......0083C40C6800000000E8......00A3"))
{
sVersion="4.x";
bDetected=1;
}
else if(PE.compareEP("837C24080175..8B442404A3........E8"))
{
sVersion="4.x";
bDetected=1;
}
return result(bShowType,bShowVersion,bShowOptions);
}