mirror of
https://github.com/horsicq/Detect-It-Easy.git
synced 2026-06-24 01:54:08 +00:00
13 lines
315 B
JavaScript
13 lines
315 B
JavaScript
// Detect It Easy: detection rule file
|
|
init("compiler", "Visual Objects");
|
|
|
|
function detect() {
|
|
if (PE.compare("'This Visual Objects application cannot be run in DOS mode'", 0x312)) {
|
|
sVersion = "2.XX";
|
|
bDetected = true;
|
|
}
|
|
|
|
_setLang("Visual Objects", bDetected);
|
|
|
|
return result();
|
|
}
|