diff options
Diffstat (limited to 'binaryninjaapi.h')
| -rw-r--r-- | binaryninjaapi.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/binaryninjaapi.h b/binaryninjaapi.h index 9300a478..3d5dba21 100644 --- a/binaryninjaapi.h +++ b/binaryninjaapi.h @@ -7517,6 +7517,7 @@ namespace BinaryNinja { public: Enumeration(BNEnumeration* e); + std::vector<InstructionTextToken> GetTokensForValue(uint64_t value, size_t width); std::vector<EnumerationMember> GetMembers() const; }; @@ -8729,6 +8730,11 @@ namespace BinaryNinja { void SetIntegerConstantDisplayType( Architecture* arch, uint64_t instrAddr, uint64_t value, size_t operand, BNIntegerDisplayType type); + Ref<Type> GetIntegerConstantDisplayTypeEnumType( + Architecture* arch, uint64_t instrAddr, uint64_t value, size_t operand); + void SetIntegerConstantDisplayTypeEnumType( + Architecture* arch, uint64_t instrAddr, uint64_t value, size_t operand, Ref<Type> type); + BNHighlightColor GetInstructionHighlight(Architecture* arch, uint64_t addr); void SetAutoInstructionHighlight(Architecture* arch, uint64_t addr, BNHighlightColor color); void SetAutoInstructionHighlight( |
