diff options
| author | Rusty Wagner <rusty@vector35.com> | 2016-10-31 22:51:44 -0400 |
|---|---|---|
| committer | Rusty Wagner <rusty@vector35.com> | 2016-10-31 22:51:44 -0400 |
| commit | eef9d1eff05975c31862db4157ac2f1b2bb30502 (patch) | |
| tree | 48001392e6311609f2ff4d81aec26b00d268a05d /binaryninjaapi.h | |
| parent | fd626094e77d384a4bc8f5d5fde06d552600b879 (diff) | |
Added APIs for dealing with Thumb more easily
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 6311271c..a918fc42 100644 --- a/binaryninjaapi.h +++ b/binaryninjaapi.h @@ -926,6 +926,7 @@ namespace BinaryNinja std::vector<Ref<Symbol>> GetSymbolsOfType(BNSymbolType type, uint64_t start, uint64_t len); void DefineAutoSymbol(Ref<Symbol> sym); + void DefineAutoSymbolAndVariableOrFunction(Ref<Platform> platform, Ref<Symbol> sym, Ref<Type> type); void UndefineAutoSymbol(Ref<Symbol> sym); void DefineUserSymbol(Ref<Symbol> sym); @@ -2243,6 +2244,7 @@ namespace BinaryNinja Ref<Platform> GetRelatedPlatform(Architecture* arch); void AddRelatedPlatform(Architecture* arch, Platform* platform); + Ref<Platform> GetAssociatedPlatformByAddress(uint64_t& addr); }; class ScriptingOutputListener |
