diff options
| author | Peter LaFosse <peter@vector35.com> | 2023-02-03 10:05:44 -0500 |
|---|---|---|
| committer | Peter LaFosse <peter@vector35.com> | 2023-02-03 10:06:12 -0500 |
| commit | 5bd02a445a8f7e4d560175ed6cdc35458ad78e7a (patch) | |
| tree | 41376b203fd0e3a02e41f9e01ce755d1c13ab760 /binaryninjaapi.h | |
| parent | 5b41ad47e381a8807e921977517c0108dfbf6367 (diff) | |
Expose GetSymbolsByRawName in the C++ API
Diffstat (limited to 'binaryninjaapi.h')
| -rw-r--r-- | binaryninjaapi.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/binaryninjaapi.h b/binaryninjaapi.h index 05a5e1df..59b41e63 100644 --- a/binaryninjaapi.h +++ b/binaryninjaapi.h @@ -3959,6 +3959,14 @@ namespace BinaryNinja { */ std::vector<Ref<Symbol>> GetSymbolsByName(const std::string& name, const NameSpace& nameSpace = NameSpace()); + /*! Retrieves the list of all Symbol objects with a given raw name + + \param name RawName to search for + \param nameSpace The optional namespace of the symbols to retrieve + \return A list of symbols + */ + std::vector<Ref<Symbol>> GetSymbolsByRawName(const std::string& name, const NameSpace& nameSpace = NameSpace()); + /*! Retrieves the list of all Symbol objects \param nameSpace The optional namespace of the symbols to retrieve |
