diff options
| author | Rusty Wagner <rusty@vector35.com> | 2017-04-21 22:08:06 -0400 |
|---|---|---|
| committer | Rusty Wagner <rusty@vector35.com> | 2017-04-21 22:08:06 -0400 |
| commit | 095d7a42a0d2858b4240fbd041d8c22a01c7e571 (patch) | |
| tree | 94dc183ea3091653cbebfb068def78415b8b209f /binaryninjacore.h | |
| parent | e673afe4b958b5f8f808ff8457d0664ccecce93a (diff) | |
Allowing rename of all types of variables
Diffstat (limited to 'binaryninjacore.h')
| -rw-r--r-- | binaryninjacore.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/binaryninjacore.h b/binaryninjacore.h index 21592772..69b45c28 100644 --- a/binaryninjacore.h +++ b/binaryninjacore.h @@ -188,7 +188,7 @@ extern "C" // not be used directly by the architecture plugins CodeSymbolToken = 64, DataSymbolToken = 65, - StackVariableToken = 66, + LocalVariableToken = 66, ImportToken = 67, AddressDisplayToken = 68 }; @@ -196,7 +196,7 @@ extern "C" enum BNInstructionTextTokenContext { NoTokenContext = 0, - StackVariableTokenContext = 1, + LocalVariableTokenContext = 1, DataVariableTokenContext = 2, FunctionReturnTokenContext = 3, ArgumentTokenContext = 4 @@ -212,8 +212,8 @@ extern "C" FunctionHeaderStartLineType, FunctionHeaderEndLineType, FunctionContinuationLineType, - StackVariableLineType, - StackVariableListEndLineType, + LocalVariableLineType, + LocalVariableListEndLineType, FunctionEndLineType, NoteStartLineType, NoteLineType, @@ -1144,7 +1144,7 @@ extern "C" uint32_t sourceOperand; BNType* type; char* name; - int64_t startingOffset; + uint64_t varIdentifier; int64_t referencedOffset; }; |
