summaryrefslogtreecommitdiff
path: root/binaryninjaapi.h
diff options
context:
space:
mode:
authorBrian Potchik <brian@vector35.com>2022-03-02 13:42:32 -0500
committerBrian Potchik <brian@vector35.com>2022-03-02 13:42:32 -0500
commit5bddd6ff72cd1aff613f76b952ef35b31776fd2e (patch)
tree4e8c7ad1c74ad4cff6e565c65db6a16081caf006 /binaryninjaapi.h
parenta79ea22f3b271c8834f616403f2400b4597a9dc7 (diff)
Add function update request API.
Diffstat (limited to 'binaryninjaapi.h')
-rw-r--r--binaryninjaapi.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/binaryninjaapi.h b/binaryninjaapi.h
index d0feb2d1..411c9c9c 100644
--- a/binaryninjaapi.h
+++ b/binaryninjaapi.h
@@ -3852,7 +3852,9 @@ namespace BinaryNinja {
Ref<Tag> CreateAutoFunctionTag(Ref<TagType> tagType, const std::string& data, bool unique = false);
Ref<Tag> CreateUserFunctionTag(Ref<TagType> tagType, const std::string& data, bool unique = false);
- void Reanalyze();
+ void Reanalyze(BNFunctionUpdateType type = UserFunctionUpdate);
+ void MarkUpdatesRequired(BNFunctionUpdateType type = UserFunctionUpdate);
+ void MarkCallerUpdatesRequired(BNFunctionUpdateType type = UserFunctionUpdate);
Ref<Workflow> GetWorkflow() const;