From 7acfe6f01fc669bf08cd301631601a24486bee74 Mon Sep 17 00:00:00 2001 From: Josh Ferrell Date: Mon, 1 Mar 2021 14:03:17 -0500 Subject: Add methods for creating wide char types --- binaryninjaapi.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'binaryninjaapi.h') 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 BoolType(); static Ref IntegerType(size_t width, const Confidence& sign, const std::string& altName = ""); static Ref FloatType(size_t width, const std::string& typeName = ""); + static Ref WideCharType(size_t width, const std::string& typeName = ""); static Ref StructureType(Structure* strct); static Ref NamedType(NamedTypeReference* ref, size_t width = 0, size_t align = 1); static Ref 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& 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); -- cgit v1.3.1