diff options
| author | Peter LaFosse <peter@vector35.com> | 2021-08-11 08:31:51 -0400 |
|---|---|---|
| committer | Peter LaFosse <peter@vector35.com> | 2021-09-05 10:09:10 -0400 |
| commit | 64447f5c063cf0876f563d53950ea0d613136afa (patch) | |
| tree | fc45819a50df487a56c603795bbf1799f6747c46 /binaryninjaapi.h | |
| parent | 55cf411c056ceb725d8172cc71318d32f5a3b207 (diff) | |
Add TypeBuilder SetAlternateName/SetParameters/SetSigned
Diffstat (limited to 'binaryninjaapi.h')
| -rw-r--r-- | binaryninjaapi.h | 3 |
1 files changed, 3 insertions, 0 deletions
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<BNMemberScope>& scope); TypeBuilder& SetConst(const Confidence<bool>& cnst); TypeBuilder& SetVolatile(const Confidence<bool>& vltl); + TypeBuilder& SetSigned(const Confidence<bool>& vltl); TypeBuilder& SetTypeName(const QualifiedName& name); + TypeBuilder& SetAlternateName(const std::string& name); Confidence<int64_t> GetStackAdjustment() const; QualifiedName GetStructureName() const; @@ -2921,6 +2923,7 @@ __attribute__ ((format (printf, 1, 2))) uint64_t GetOffset() const; TypeBuilder& SetFunctionCanReturn(const Confidence<bool>& canReturn); + TypeBuilder& SetParameters(const std::vector<FunctionParameter>& params); std::string GetString(Platform* platform = nullptr) const; std::string GetTypeAndName(const QualifiedName& name) const; |
