diff options
| author | Rusty Wagner <rusty@vector35.com> | 2016-07-20 18:54:57 -0400 |
|---|---|---|
| committer | Rusty Wagner <rusty@vector35.com> | 2016-07-20 18:54:57 -0400 |
| commit | 5e15a16c95dd3e0b48ea0b319a813720f14fec5a (patch) | |
| tree | e71fb0710bafbe7bcfe0bb87eea7266427410346 /binaryninjacore.h | |
| parent | 5fe41897d085a4fe39135fdcc7ec60a24d1799cd (diff) | |
Add API for previous start of basic block
Diffstat (limited to 'binaryninjacore.h')
| -rw-r--r-- | binaryninjacore.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/binaryninjacore.h b/binaryninjacore.h index d667d12a..ac4fa0a3 100644 --- a/binaryninjacore.h +++ b/binaryninjacore.h @@ -1430,6 +1430,7 @@ extern "C" BINARYNINJACOREAPI uint64_t BNGetNextDataAfterAddress(BNBinaryView* view, uint64_t addr); BINARYNINJACOREAPI uint64_t BNGetNextDataVariableAfterAddress(BNBinaryView* view, uint64_t addr); BINARYNINJACOREAPI uint64_t BNGetPreviousFunctionStartBeforeAddress(BNBinaryView* view, uint64_t addr); + BINARYNINJACOREAPI uint64_t BNGetPreviousBasicBlockStartBeforeAddress(BNBinaryView* view, uint64_t addr); BINARYNINJACOREAPI uint64_t BNGetPreviousBasicBlockEndBeforeAddress(BNBinaryView* view, uint64_t addr); BINARYNINJACOREAPI uint64_t BNGetPreviousDataBeforeAddress(BNBinaryView* view, uint64_t addr); BINARYNINJACOREAPI uint64_t BNGetPreviousDataVariableBeforeAddress(BNBinaryView* view, uint64_t addr); |
