From 902ef4d9ca892e3de23355c3c0fc7b49bf1d9726 Mon Sep 17 00:00:00 2001 From: Brian Potchik Date: Fri, 12 Feb 2021 13:58:24 -0500 Subject: Add unresolved control-flow tracking and associated tag support. --- binaryninjacore.h | 3 +++ 1 file changed, 3 insertions(+) (limited to 'binaryninjacore.h') diff --git a/binaryninjacore.h b/binaryninjacore.h index a857bd79..c64adc23 100644 --- a/binaryninjacore.h +++ b/binaryninjacore.h @@ -3336,6 +3336,9 @@ __attribute__ ((format (printf, 1, 2))) uint64_t addr, size_t* count); BINARYNINJACOREAPI void BNFreeIndirectBranchList(BNIndirectBranchInfo* branches); + BINARYNINJACOREAPI uint64_t* BNGetUnresolvedIndirectBranches(BNFunction* func, size_t* count); + BINARYNINJACOREAPI bool BNHasUnresolvedIndirectBranches(BNFunction* func); + BINARYNINJACOREAPI void BNSetAutoCallTypeAdjustment(BNFunction* func, BNArchitecture* arch, uint64_t addr, BNTypeWithConfidence* type); BINARYNINJACOREAPI void BNSetUserCallTypeAdjustment(BNFunction* func, BNArchitecture* arch, uint64_t addr, -- cgit v1.3.1