summaryrefslogtreecommitdiff
path: root/binaryninjaapi.h
diff options
context:
space:
mode:
authorGlenn Smith <glenn@vector35.com>2024-09-25 17:33:59 -0400
committerGlenn Smith <glenn@vector35.com>2024-10-14 16:58:46 -0400
commit9779664178534903236695755478467025901462 (patch)
treea30fb8bb0997ae81b5241ca68b72d48879f290fb /binaryninjaapi.h
parent3783427718195661390278491600665703163357 (diff)
Add some missing type builder getters and setters
Diffstat (limited to 'binaryninjaapi.h')
-rw-r--r--binaryninjaapi.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/binaryninjaapi.h b/binaryninjaapi.h
index 82217f9b..3db0f9d1 100644
--- a/binaryninjaapi.h
+++ b/binaryninjaapi.h
@@ -9142,6 +9142,8 @@ namespace BinaryNinja {
Ref<Enumeration> GetEnumeration() const;
Ref<NamedTypeReference> GetNamedTypeReference() const;
Confidence<BNMemberScope> GetScope() const;
+ BNNameType GetNameType() const;
+ bool HasTemplateArguments() const;
TypeBuilder& SetWidth(size_t width);
TypeBuilder& SetAlignment(size_t alignment);
TypeBuilder& SetNamedTypeReference(NamedTypeReference* ntr);
@@ -9153,6 +9155,8 @@ namespace BinaryNinja {
TypeBuilder& SetTypeName(const QualifiedName& name);
TypeBuilder& SetAlternateName(const std::string& name);
TypeBuilder& SetSystemCall(bool sc, uint32_t n = 0);
+ TypeBuilder& SetNameType(BNNameType type);
+ TypeBuilder& SetHasTemplateArguments(bool hasTemplateArguments);
Confidence<int64_t> GetStackAdjustment() const;
QualifiedName GetStructureName() const;