From 64447f5c063cf0876f563d53950ea0d613136afa Mon Sep 17 00:00:00 2001 From: Peter LaFosse Date: Wed, 11 Aug 2021 08:31:51 -0400 Subject: Add TypeBuilder SetAlternateName/SetParameters/SetSigned --- binaryninjaapi.h | 3 +++ 1 file changed, 3 insertions(+) (limited to 'binaryninjaapi.h') diff --git a/binaryninjaapi.h b/binaryninjaapi.h index d6b8c7ac..0dafe793 100644 --- a/binaryninjaapi.h +++ b/binaryninjaapi.h @@ -2913,7 +2913,9 @@ __attribute__ ((format (printf, 1, 2))) TypeBuilder& SetScope(const Confidence& scope); TypeBuilder& SetConst(const Confidence& cnst); TypeBuilder& SetVolatile(const Confidence& vltl); + TypeBuilder& SetSigned(const Confidence& vltl); TypeBuilder& SetTypeName(const QualifiedName& name); + TypeBuilder& SetAlternateName(const std::string& name); Confidence GetStackAdjustment() const; QualifiedName GetStructureName() const; @@ -2921,6 +2923,7 @@ __attribute__ ((format (printf, 1, 2))) uint64_t GetOffset() const; TypeBuilder& SetFunctionCanReturn(const Confidence& canReturn); + TypeBuilder& SetParameters(const std::vector& params); std::string GetString(Platform* platform = nullptr) const; std::string GetTypeAndName(const QualifiedName& name) const; -- cgit v1.3.1