diff options
| author | Brian Potchik <brian@vector35.com> | 2023-07-29 01:59:56 -0400 |
|---|---|---|
| committer | Brian Potchik <brian@vector35.com> | 2023-07-29 01:59:56 -0400 |
| commit | adb819496e5e447b7acf5336ffe5d0a18a03c448 (patch) | |
| tree | bf3619d77070e8c689ebc3ff6cc4169172dfb845 /activity.cpp | |
| parent | 8206f95a6a59a21f156abb4e6ec8582797f8620b (diff) | |
Core workflows feature update.
Diffstat (limited to 'activity.cpp')
| -rw-r--r-- | activity.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/activity.cpp b/activity.cpp index ee9327de..4b2f933f 100644 --- a/activity.cpp +++ b/activity.cpp @@ -5,11 +5,11 @@ using namespace BinaryNinja; using namespace std; -Activity::Activity(const string& name, const std::function<void(Ref<AnalysisContext> analysisContext)>& action) : +Activity::Activity(const string& configuration, const std::function<void(Ref<AnalysisContext> analysisContext)>& action) : m_action(action) { // LogError("API-Side Activity Constructed!"); - m_object = BNCreateActivity(name.c_str(), this, Run); + m_object = BNCreateActivity(configuration.c_str(), this, Run); } |
