diff options
| author | Brian Potchik <brian@vector35.com> | 2021-02-12 13:58:24 -0500 |
|---|---|---|
| committer | Brian Potchik <brian@vector35.com> | 2021-02-12 13:58:24 -0500 |
| commit | 902ef4d9ca892e3de23355c3c0fc7b49bf1d9726 (patch) | |
| tree | c4f028a37c10ff26b235a13959d133284667e4de /binaryninjacore.h | |
| parent | 413eb2a9332c425a57a8ed6e22c71011f22a73df (diff) | |
Add unresolved control-flow tracking and associated tag support.
Diffstat (limited to 'binaryninjacore.h')
| -rw-r--r-- | binaryninjacore.h | 3 |
1 files changed, 3 insertions, 0 deletions
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, |
