summaryrefslogtreecommitdiff
path: root/binaryninjacore.h
diff options
context:
space:
mode:
authorRusty Wagner <rusty@vector35.com>2017-04-21 22:08:06 -0400
committerRusty Wagner <rusty@vector35.com>2017-04-21 22:08:06 -0400
commit095d7a42a0d2858b4240fbd041d8c22a01c7e571 (patch)
tree94dc183ea3091653cbebfb068def78415b8b209f /binaryninjacore.h
parente673afe4b958b5f8f808ff8457d0664ccecce93a (diff)
Allowing rename of all types of variables
Diffstat (limited to 'binaryninjacore.h')
-rw-r--r--binaryninjacore.h10
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;
};