diff options
| author | Rusty Wagner <rusty@vector35.com> | 2016-07-30 02:10:43 -0400 |
|---|---|---|
| committer | Rusty Wagner <rusty@vector35.com> | 2016-07-30 02:10:43 -0400 |
| commit | fc63dfdd3487a5d296087cbe2b898eb22e67d3aa (patch) | |
| tree | 3620a9c47b460f99e2de519d01152ede217a9529 /binaryninjaapi.h | |
| parent | 038d192dfb3f73a268447d890cccf27926d35941 (diff) | |
Add API to find data in a binary view
Diffstat (limited to 'binaryninjaapi.h')
| -rw-r--r-- | binaryninjaapi.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/binaryninjaapi.h b/binaryninjaapi.h index d5d12dce..2b2ccc48 100644 --- a/binaryninjaapi.h +++ b/binaryninjaapi.h @@ -902,6 +902,8 @@ namespace BinaryNinja void DefineUserType(const std::string& name, Type* type); void UndefineType(const std::string& name); void UndefineUserType(const std::string& name); + + bool FindNextData(uint64_t start, const DataBuffer& data, uint64_t& result, BNFindFlag flags = NoFindFlags); }; class BinaryData: public BinaryView |
