diff options
| author | kat <kat@vector35.com> | 2024-07-24 11:15:31 -0400 |
|---|---|---|
| committer | kat <kat@vector35.com> | 2024-07-24 11:30:01 -0400 |
| commit | 892a0729a587d3a4e8ac248e4eee8a73c7ccc5d1 (patch) | |
| tree | 318cd5a947b4c1feb9ca84c92f3a457338eeb93d /binaryninjaapi.h | |
| parent | dfca98643532126fa78999192900d37b654e46ff (diff) | |
Add Platform::GetRelatedPlatforms
Diffstat (limited to 'binaryninjaapi.h')
| -rw-r--r-- | binaryninjaapi.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/binaryninjaapi.h b/binaryninjaapi.h index a6e433a3..49f57fad 100644 --- a/binaryninjaapi.h +++ b/binaryninjaapi.h @@ -14803,6 +14803,11 @@ namespace BinaryNinja { Ref<Platform> GetRelatedPlatform(Architecture* arch); void AddRelatedPlatform(Architecture* arch, Platform* platform); + /*! Get the list of related platforms for this platform + + \return A vector of Ref<Platform>s + */ + std::vector<Ref<Platform>> GetRelatedPlatforms(); Ref<Platform> GetAssociatedPlatformByAddress(uint64_t& addr); /*! Get the list of platform-specific types |
