diff options
| author | Xusheng <xusheng@vector35.com> | 2021-04-19 17:04:24 +0800 |
|---|---|---|
| committer | Xusheng <xusheng@vector35.com> | 2021-05-04 14:04:39 +0800 |
| commit | ad71a51fef925779f5ae30b597efb9979607b693 (patch) | |
| tree | 5f5275f7dc9501c1c3ac824a67d497fc7f39f8fa /binaryninjaapi.h | |
| parent | 1e2bb984e2fe601b78a4afff3c9097f8f181f9c9 (diff) | |
render non-member access to type on a new line
add Python API for retrieving all type fields referenced by code
change m_updatesRequired to std::atomic_bool
fix potential UAF after calling AnalysisCompletionEvent::Cancel()
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 6af35d69..8f9e8e61 100644 --- a/binaryninjaapi.h +++ b/binaryninjaapi.h @@ -1618,6 +1618,8 @@ __attribute__ ((format (printf, 1, 2))) std::vector<TypeReferenceSource> GetCodeReferencesForTypeFieldFrom(ReferenceSource src); std::vector<TypeReferenceSource> GetCodeReferencesForTypeFieldFrom(ReferenceSource src, uint64_t len); + std::vector<uint64_t> GetAllFieldsReferencedByCode(const QualifiedName& type); + std::vector<uint64_t> GetCallees(ReferenceSource addr); std::vector<ReferenceSource> GetCallers(uint64_t addr); |
