Detect-It-Easy/db/PE/library_CodeBase.4.sg
DosX 00400c04c6 Improve detection logic for Intel C/C++ and CodeBase
Refined the Intel C/C++ detection rule to better extract version information and updated author metadata. Enhanced CodeBase library detection by setting sOptions to 'static' when the export function is present.
2026-01-18 10:38:01 +03:00

15 lines
No EOL
368 B
JavaScript

// Detect It Easy: detection rule file
// Author: BJNFNE <bjnfne@web.de>
// https://github.com/MPSystemsServices/CodeBase-for-DBF
meta("library", "CodeBase");
function detect() {
if (PE.isExportFunctionPresent("??4l4linkSt@@QAEAAU0@ABU0@@Z")) {
sVersion = "4.0";
sOptions = "static"; // EAT
bDetected = true;
}
return result();
}