diff options
| author | Rusty Wagner <rusty.wagner@gmail.com> | 2025-06-03 13:42:04 -0600 |
|---|---|---|
| committer | Rusty Wagner <rusty.wagner@gmail.com> | 2025-06-03 13:42:54 -0600 |
| commit | 9c8d4eac3dadf6273b34ba193c219de9283285b3 (patch) | |
| tree | d2df35ae70c77ef83dd320a29f97baa738a956d6 /binaryninjaapi.h | |
| parent | 37d52c95d94b8a586c5d59fb500a7b35f3e272dc (diff) | |
Add UI action and API to control early returns in HLIL
Diffstat (limited to 'binaryninjaapi.h')
| -rw-r--r-- | binaryninjaapi.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/binaryninjaapi.h b/binaryninjaapi.h index 0d4533b5..6c9f8514 100644 --- a/binaryninjaapi.h +++ b/binaryninjaapi.h @@ -11433,6 +11433,9 @@ namespace BinaryNinja { bool IsConditionInverted(uint64_t addr); void SetConditionInverted(uint64_t addr, bool invert); + BNEarlyReturn GetEarlyReturn(uint64_t addr); + void SetEarlyReturn(uint64_t addr, BNEarlyReturn mode); + std::map<Variable, std::set<Variable>> GetMergedVariables(); void MergeVariables(const Variable& target, const std::set<Variable>& sources); void UnmergeVariables(const Variable& target, const std::set<Variable>& sources); |
