From 656a95f0f810bf666b2894359fb7f24dc5f7bbf5 Mon Sep 17 00:00:00 2001 From: Xusheng Date: Fri, 11 Aug 2023 17:01:07 +0800 Subject: Add current_il_instructions magic variable in the Python console. Fix https://github.com/Vector35/binaryninja-api/issues/4327. --- binaryninjacore.h | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'binaryninjacore.h') diff --git a/binaryninjacore.h b/binaryninjacore.h index ae918cd5..246918fc 100644 --- a/binaryninjacore.h +++ b/binaryninjacore.h @@ -2793,6 +2793,12 @@ extern "C" uint64_t end; } BNAddressRange; + typedef struct BNILIndexRange + { + size_t start; + size_t end; + } BNILIndexRange; + typedef struct BNSystemCallInfo { uint32_t number; -- cgit v1.3.1