diff options
| author | Mason Reed <mason@vector35.com> | 2025-04-15 22:49:16 -0400 |
|---|---|---|
| committer | Mason Reed <mason@vector35.com> | 2025-04-15 22:49:16 -0400 |
| commit | 177f9915999e7498cbaad772e0041bb549bd9fda (patch) | |
| tree | a7d33bc56447a6d17f3f9cf38c51d517045ec50c /plugins | |
| parent | 84eecdfdfd8b972cd9fcafb35da81ed62d9698f9 (diff) | |
Include RTTI analysis in free version
Diffstat (limited to 'plugins')
| -rw-r--r-- | plugins/rtti/plugin.cpp | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/plugins/rtti/plugin.cpp b/plugins/rtti/plugin.cpp index faa741f1..8b2d9bb8 100644 --- a/plugins/rtti/plugin.cpp +++ b/plugins/rtti/plugin.cpp @@ -50,7 +50,11 @@ void VFTAnalysis(const Ref<AnalysisContext>& analysisContext) extern "C" { BN_DECLARE_CORE_ABI_VERSION - BINARYNINJAPLUGIN bool CorePluginInit() +#ifdef DEMO_EDITION + bool RTTIPluginInit() +#else + BINARYNINJAPLUGIN bool CorePluginInit() +#endif { // TODO: In the future we will have a function level workflow which: // TODO: 1. Uses MSVC metadata to identify if a function is apart of a VFT |
