diff options
| author | Rusty Wagner <rusty@vector35.com> | 2016-05-15 18:35:04 -0400 |
|---|---|---|
| committer | Rusty Wagner <rusty@vector35.com> | 2016-05-15 18:35:04 -0400 |
| commit | 72bf56348109d87994928dee244dd97a27480c6d (patch) | |
| tree | c13a791f3cf48a62dcf7035b16d3a80eadbdf775 /binaryninjacore.h | |
| parent | 0e0cd16a68fb4b073b33ee48c31c6d6e34bfad90 (diff) | |
Modify IL text API to allow for stack variable annotations
Diffstat (limited to 'binaryninjacore.h')
| -rw-r--r-- | binaryninjacore.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/binaryninjacore.h b/binaryninjacore.h index 2a9eb187..aaade7ef 100644 --- a/binaryninjacore.h +++ b/binaryninjacore.h @@ -1278,9 +1278,9 @@ extern "C" BNArchitecture* arch, uint64_t addr); BINARYNINJACOREAPI bool BNGetLowLevelILExprText(BNLowLevelILFunction* func, BNArchitecture* arch, size_t i, - BNInstructionTextToken** tokens, size_t* count); - BINARYNINJACOREAPI bool BNGetLowLevelILInstructionText(BNLowLevelILFunction* func, BNArchitecture* arch, size_t i, - BNInstructionTextToken** tokens, size_t* count); + BNInstructionTextToken** tokens, size_t* count); + BINARYNINJACOREAPI bool BNGetLowLevelILInstructionText(BNLowLevelILFunction* il, BNFunction* func, + BNArchitecture* arch, size_t i, BNInstructionTextToken** tokens, size_t* count); BINARYNINJACOREAPI uint32_t BNGetLowLevelILTemporaryRegisterCount(BNLowLevelILFunction* func); BINARYNINJACOREAPI uint32_t BNGetLowLevelILTemporaryFlagCount(BNLowLevelILFunction* func); |
