mirror of
https://github.com/horsicq/Detect-It-Easy.git
synced 2026-06-24 01:54:08 +00:00
Renamed numerous files in the db/Binary, db/ELF, db/ISO9660, db/NE, and db/PE directories to use a consistent naming convention with underscores and clearer prefixes (e.g., archive_, audio_, format_, library_, tool_, etc.). This improves clarity, organization, and maintainability of the database file structure.
13 lines
No EOL
275 B
JavaScript
13 lines
No EOL
275 B
JavaScript
// Detect It Easy: detection rule file
|
|
// Author: BJNFNE <bjnfne@web.de>
|
|
|
|
// https://www.radgametools.com/miles.htm
|
|
meta("library", "Miles Sound System");
|
|
|
|
function detect() {
|
|
if (PE.isLibraryPresent("mss32.dll")) {
|
|
bDetected = true;
|
|
}
|
|
|
|
return result();
|
|
} |