summaryrefslogtreecommitdiff
path: root/binaryninjacore.h
diff options
context:
space:
mode:
authorRusty Wagner <rusty@vector35.com>2017-08-24 22:26:16 -0400
committerRusty Wagner <rusty@vector35.com>2017-08-24 22:26:16 -0400
commit71a1a997e9be461a841a0f801bd19a23ad62f106 (patch)
tree7993d184758c1fde733be3f4193c906e50410ce9 /binaryninjacore.h
parent0d88336e22cf85a917729fe0f814c1e63736fca0 (diff)
Add MLIL instruction for dealing with direct access to GOT/IAT entries
Diffstat (limited to 'binaryninjacore.h')
-rw-r--r--binaryninjacore.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/binaryninjacore.h b/binaryninjacore.h
index 6ba7fda4..44858e6f 100644
--- a/binaryninjacore.h
+++ b/binaryninjacore.h
@@ -224,7 +224,8 @@ extern "C"
DataSymbolToken = 65,
LocalVariableToken = 66,
ImportToken = 67,
- AddressDisplayToken = 68
+ AddressDisplayToken = 68,
+ IndirectImportToken = 69
};
enum BNInstructionTextTokenContext
@@ -651,6 +652,7 @@ extern "C"
ConstantPointerValue,
StackFrameOffset,
ReturnAddressValue,
+ ImportedAddressValue,
// The following are only valid in BNPossibleValueSet
SignedRangeValue,
@@ -746,6 +748,7 @@ extern "C"
MLIL_ADDRESS_OF_FIELD,
MLIL_CONST,
MLIL_CONST_PTR,
+ MLIL_IMPORT,
MLIL_ADD,
MLIL_ADC,
MLIL_SUB,