summaryrefslogtreecommitdiff
path: root/type.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'type.cpp')
-rw-r--r--type.cpp8
1 files changed, 8 insertions, 0 deletions
diff --git a/type.cpp b/type.cpp
index 58d23767..05465a62 100644
--- a/type.cpp
+++ b/type.cpp
@@ -831,6 +831,10 @@ Ref<Type> Type::FunctionType(const Confidence<Ref<Type>>& returnValue,
return type;
}
+BNIntegerDisplayType Type::GetIntegerTypeDisplayType() const
+{
+ return BNGetIntegerTypeDisplayType(m_object);
+}
string Type::GenerateAutoTypeId(const string& source, const QualifiedName& name)
{
@@ -1052,6 +1056,10 @@ Confidence<bool> TypeBuilder::IsConst() const
return Confidence<bool>(result.value, result.confidence);
}
+void TypeBuilder::SetIntegerTypeDisplayType(BNIntegerDisplayType displayType)
+{
+ BNSetIntegerTypeDisplayType(m_object, displayType);
+}
Confidence<BNMemberScope> TypeBuilder::GetScope() const
{