Detect-It-Easy/db/MSDOS/ARJ.1.sg
2014-06-01 23:42:39 +02:00

18 lines
369 B
Text

// DIE's signature file
init("sfx","ARJ");
function detect(bShowType,bShowVersion,bShowOptions)
{
if(MSDOS.compare("'RJSX'",0x1c))
{
sVersion="old";
bDetected=1;
}
else if(MSDOS.isSignaturePresent(0,Math.min(1000,MSDOS.getSize()),"'aRJsfX'"))
{
bDetected=1;
}
return result(bShowType,bShowVersion,bShowOptions);
}