diff options
| author | Xusheng <xusheng@vector35.com> | 2020-08-24 21:46:36 +0800 |
|---|---|---|
| committer | Xusheng <xusheng@vector35.com> | 2020-09-15 09:29:54 +0800 |
| commit | 75d05ea710f80a0ca2fdc53b638952a7a97e7ad8 (patch) | |
| tree | f8fe2205178cd7942a1e6d45c79dda9d748b526f /type.cpp | |
| parent | 33e31719d37deed58cfe709bf475b80fece8c34a (diff) | |
display as in linear view
Diffstat (limited to 'type.cpp')
| -rw-r--r-- | type.cpp | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -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 { |
