diff options
| author | Rusty Wagner <rusty.wagner@gmail.com> | 2025-05-30 14:21:14 -0600 |
|---|---|---|
| committer | Rusty Wagner <rusty.wagner@gmail.com> | 2025-06-03 13:42:54 -0600 |
| commit | 37d52c95d94b8a586c5d59fb500a7b35f3e272dc (patch) | |
| tree | e535f845fa0fd2947e245da187bde01604356c8d /binaryninjaapi.h | |
| parent | 8ef932b35e76f670611b79a2fcba88c6f8e15169 (diff) | |
Add UI action and API to flip conditions during HLIL restructuring
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 6d5c144c..0d4533b5 100644 --- a/binaryninjaapi.h +++ b/binaryninjaapi.h @@ -11430,6 +11430,9 @@ namespace BinaryNinja { BNExprFolding GetExprFolding(uint64_t addr); void SetExprFolding(uint64_t addr, BNExprFolding mode); + bool IsConditionInverted(uint64_t addr); + void SetConditionInverted(uint64_t addr, bool invert); + 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); |
