Skip to content

Commit a08411d

Browse files
committed
Add detection rule for Atlantic/OpenColorIO
Introduces new detection rule for Atlantic & OpenColorIO These rules help to detect video library in binaries.
1 parent 3571c84 commit a08411d

File tree

2 files changed

+26
-0
lines changed

2 files changed

+26
-0
lines changed

db/PE/Atlantic.4.sg

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
// Detect It Easy: detection rule file
2+
// Author: BJNFNE <[email protected]>
3+
4+
// https://www.magix.com/
5+
meta("library", "VEGAS Atlantic Component");
6+
7+
function detect() {
8+
if (PE.isLibraryPresent("Atlantic.dll")) {
9+
bDetected = true;
10+
}
11+
12+
return result();
13+
}

db/PE/OpenColorIO.4.sg

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
// Detect It Easy: detection rule file
2+
// Author: BJNFNE <[email protected]>
3+
4+
// https://opencolorio.org/
5+
meta("library", "OpenColorIO");
6+
7+
function detect() {
8+
if (PE.isLibraryPresent("OpenColorIO.dll")) {
9+
bDetected = true;
10+
}
11+
12+
return result();
13+
}

0 commit comments

Comments
 (0)