From 7038897105235644749844401411645589822198 Mon Sep 17 00:00:00 2001 From: Glenn Smith Date: Sat, 11 May 2024 17:15:53 -0400 Subject: Based pointers --- binaryninjaapi.h | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'binaryninjaapi.h') diff --git a/binaryninjaapi.h b/binaryninjaapi.h index ffc4fd86..477d1b60 100644 --- a/binaryninjaapi.h +++ b/binaryninjaapi.h @@ -8594,6 +8594,8 @@ namespace BinaryNinja { uint64_t GetElementCount() const; uint64_t GetOffset() const; + BNPointerBaseType GetPointerBaseType() const; + int64_t GetPointerBaseOffset() const; std::set GetPointerSuffix() const; std::string GetPointerSuffixString() const; @@ -8984,11 +8986,14 @@ namespace BinaryNinja { uint64_t GetElementCount() const; uint64_t GetOffset() const; uint32_t GetSystemCallNumber() const; + BNPointerBaseType GetPointerBaseType() const; + int64_t GetPointerBaseOffset() const; TypeBuilder& SetOffset(uint64_t offset); TypeBuilder& SetFunctionCanReturn(const Confidence& canReturn); TypeBuilder& SetPure(const Confidence& pure); TypeBuilder& SetParameters(const std::vector& params); + TypeBuilder& SetPointerBase(BNPointerBaseType baseType, int64_t baseOffset); std::set GetPointerSuffix() const; std::string GetPointerSuffixString() const; -- cgit v1.3.1