From 5bd02a445a8f7e4d560175ed6cdc35458ad78e7a Mon Sep 17 00:00:00 2001 From: Peter LaFosse Date: Fri, 3 Feb 2023 10:05:44 -0500 Subject: Expose GetSymbolsByRawName in the C++ API --- binaryninjaapi.h | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'binaryninjaapi.h') 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> 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> 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 -- cgit v1.3.1