diff options
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 |
