summaryrefslogtreecommitdiff
path: root/binaryninjacore.h
diff options
context:
space:
mode:
authorPeter LaFosse <peter@vector35.com>2018-08-16 22:30:15 -0400
committerPeter LaFosse <peter@vector35.com>2018-08-16 22:30:15 -0400
commit00fc6c96d415bd31ee5ecbec70a8e4de141674cd (patch)
tree0a6ed958eb313fa54727fb8bc0d3afdcef4d83cd /binaryninjacore.h
parent1ce780cd6a66a289b0422298871d61392ad3ec2a (diff)
Adding EXTERN_PTR type
Diffstat (limited to 'binaryninjacore.h')
-rw-r--r--binaryninjacore.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/binaryninjacore.h b/binaryninjacore.h
index e7eb3922..9b50c7e3 100644
--- a/binaryninjacore.h
+++ b/binaryninjacore.h
@@ -232,7 +232,8 @@ extern "C"
LocalVariableToken = 66,
ImportToken = 67,
AddressDisplayToken = 68,
- IndirectImportToken = 69
+ IndirectImportToken = 69,
+ ExternalSymbolToken = 70
};
enum BNInstructionTextTokenContext
@@ -312,7 +313,7 @@ extern "C"
LLIL_REG_STACK_FREE_REL, // Not valid in SSA from (see LLIL_REG_STACK_FREE_REL_SSA)
LLIL_CONST,
LLIL_CONST_PTR,
- LLIL_RELOC_PTR,
+ LLIL_EXTERN_PTR,
LLIL_FLOAT_CONST,
LLIL_FLAG, // Not valid in SSA form (see LLIL_FLAG_SSA)
LLIL_FLAG_BIT, // Not valid in SSA form (see LLIL_FLAG_BIT_SSA)
@@ -831,6 +832,7 @@ extern "C"
MLIL_ADDRESS_OF_FIELD,
MLIL_CONST,
MLIL_CONST_PTR,
+ MLIL_EXTERN_PTR,
MLIL_FLOAT_CONST,
MLIL_IMPORT,
MLIL_ADD,