From 37d52c95d94b8a586c5d59fb500a7b35f3e272dc Mon Sep 17 00:00:00 2001 From: Rusty Wagner Date: Fri, 30 May 2025 14:21:14 -0600 Subject: Add UI action and API to flip conditions during HLIL restructuring --- binaryninjaapi.h | 3 +++ 1 file changed, 3 insertions(+) (limited to 'binaryninjaapi.h') 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> GetMergedVariables(); void MergeVariables(const Variable& target, const std::set& sources); void UnmergeVariables(const Variable& target, const std::set& sources); -- cgit v1.3.1