diff options
| author | Xusheng <xusheng@vector35.com> | 2023-08-11 17:01:07 +0800 |
|---|---|---|
| committer | Xusheng <xusheng@vector35.com> | 2023-08-11 17:01:07 +0800 |
| commit | 656a95f0f810bf666b2894359fb7f24dc5f7bbf5 (patch) | |
| tree | 86c953758b7daa485cd40bc47638d1b8b3a262f9 /binaryninjacore.h | |
| parent | a693c795f73686eb8901eeb70e252b9ca796049d (diff) | |
Add current_il_instructions magic variable in the Python console. Fix https://github.com/Vector35/binaryninja-api/issues/4327.
Diffstat (limited to 'binaryninjacore.h')
| -rw-r--r-- | binaryninjacore.h | 6 |
1 files changed, 6 insertions, 0 deletions
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; |
