diff options
| author | Josh Ferrell <josh@vector35.com> | 2021-03-01 14:03:17 -0500 |
|---|---|---|
| committer | Josh Ferrell <josh@vector35.com> | 2021-03-01 14:03:17 -0500 |
| commit | 7acfe6f01fc669bf08cd301631601a24486bee74 (patch) | |
| tree | e6a4407659175c76e414446fb9515584e7e25ef0 /binaryninjaapi.h | |
| parent | 41c617baa83557c053616694306053e5aa3d8ad4 (diff) | |
Add methods for creating wide char types
Diffstat (limited to 'binaryninjaapi.h')
| -rw-r--r-- | binaryninjaapi.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/binaryninjaapi.h b/binaryninjaapi.h index eac2f6b8..cd52dc44 100644 --- a/binaryninjaapi.h +++ b/binaryninjaapi.h @@ -2618,6 +2618,7 @@ __attribute__ ((format (printf, 1, 2))) static Ref<Type> BoolType(); static Ref<Type> IntegerType(size_t width, const Confidence<bool>& sign, const std::string& altName = ""); static Ref<Type> FloatType(size_t width, const std::string& typeName = ""); + static Ref<Type> WideCharType(size_t width, const std::string& typeName = ""); static Ref<Type> StructureType(Structure* strct); static Ref<Type> NamedType(NamedTypeReference* ref, size_t width = 0, size_t align = 1); static Ref<Type> NamedType(const QualifiedName& name, Type* type); @@ -2738,6 +2739,7 @@ __attribute__ ((format (printf, 1, 2))) static TypeBuilder BoolType(); static TypeBuilder IntegerType(size_t width, const Confidence<bool>& sign, const std::string& altName = ""); static TypeBuilder FloatType(size_t width, const std::string& typeName = ""); + static TypeBuilder WideCharType(size_t width, const std::string& typeName = ""); static TypeBuilder StructureType(Structure* strct); static TypeBuilder NamedType(NamedTypeReference* ref, size_t width = 0, size_t align = 1); static TypeBuilder NamedType(const QualifiedName& name, Type* type); |
