From e6496396f37f337f3a8422fdb66f261257d25b61 Mon Sep 17 00:00:00 2001 From: Brandon Miller Date: Mon, 19 May 2025 11:46:24 -0400 Subject: Implement function level metadata --- binaryninjaapi.h | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'binaryninjaapi.h') diff --git a/binaryninjaapi.h b/binaryninjaapi.h index 95c54095..0d2bdfe2 100644 --- a/binaryninjaapi.h +++ b/binaryninjaapi.h @@ -11458,6 +11458,12 @@ namespace BinaryNinja { void CollapseRegion(uint64_t hash); void ExpandRegion(uint64_t hash); void ExpandAll(); + + void StoreMetadata(const std::string& key, Ref value, bool isAuto = false); + Ref QueryMetadata(const std::string& key); + Ref GetMetadata(); + Ref GetAutoMetadata(); + void RemoveMetadata(const std::string& key); }; /*! -- cgit v1.3.1