summaryrefslogtreecommitdiff
path: root/binaryninjaapi.h
diff options
context:
space:
mode:
authorPeter LaFosse <peter@vector35.com>2019-04-05 21:55:47 -0400
committerPeter LaFosse <peter@vector35.com>2019-04-07 18:19:49 -0400
commite34e52c2f797c9b97b592abb311e3a5bc2194b4a (patch)
tree713307be0740705debbd5a3ca62abc6234b510d8 /binaryninjaapi.h
parent5de327770ec8c3f1aca9c774d850442edb9a3610 (diff)
Add API for geting a list of type names without the associated objects
Diffstat (limited to 'binaryninjaapi.h')
-rw-r--r--binaryninjaapi.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/binaryninjaapi.h b/binaryninjaapi.h
index 65cba272..9fe63e43 100644
--- a/binaryninjaapi.h
+++ b/binaryninjaapi.h
@@ -1432,6 +1432,7 @@ namespace BinaryNinja
bool ParseTypeString(const std::string& text, std::map<QualifiedName, Ref<Type>>& result, std::string& errors);
std::map<QualifiedName, Ref<Type>> GetTypes();
+ std::vector<QualifiedName> GetTypeNames(const std::string& matching="");
Ref<Type> GetTypeByName(const QualifiedName& name);
Ref<Type> GetTypeById(const std::string& id);
std::string GetTypeId(const QualifiedName& name);