summaryrefslogtreecommitdiff
path: root/binaryninjacore.h
diff options
context:
space:
mode:
authorGlenn Smith <glenn@vector35.com>2021-06-25 18:08:55 -0400
committerGlenn Smith <glenn@vector35.com>2021-07-01 01:32:28 -0400
commit8f0f90294096ed12e099b0572e28b531636e4fd8 (patch)
treef0d15a077c4829e7a5ec290c2532f1126eaa71f5 /binaryninjacore.h
parent78f177679cfacfcfb4f9ff542cb20a04914aed1f (diff)
GetAllTagReferenceTypeCounts for optimized all-counts list
Diffstat (limited to 'binaryninjacore.h')
-rw-r--r--binaryninjacore.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/binaryninjacore.h b/binaryninjacore.h
index 65f86aa9..73b072be 100644
--- a/binaryninjacore.h
+++ b/binaryninjacore.h
@@ -3771,6 +3771,8 @@ __attribute__ ((format (printf, 1, 2)))
BINARYNINJACOREAPI size_t BNGetTagReferencesOfTypeCount(BNBinaryView* view, BNTagType* tagType);
BINARYNINJACOREAPI size_t BNGetAllTagReferencesOfTypeCount(BNBinaryView* view, BNTagType* tagType);
+ BINARYNINJACOREAPI void BNGetAllTagReferenceTypeCounts(BNBinaryView* view, BNTagType*** tagTypes, size_t** counts, size_t* count);
+ BINARYNINJACOREAPI void BNFreeTagReferenceTypeCounts(BNTagType** tagTypes, size_t* counts);
BINARYNINJACOREAPI BNTagReference* BNGetFunctionAllTagReferences(BNFunction* func, size_t* count);
BINARYNINJACOREAPI BNTagReference* BNGetFunctionTagReferencesOfType(BNFunction* func, BNTagType* tagType, size_t* count);