From 73b649e79d5cd219cb56866abf2ee5e6a64d976a Mon Sep 17 00:00:00 2001 From: Chinmay Date: Mon, 17 Aug 2020 22:53:09 -0700 Subject: UI changes for user-informed dataflow --- binaryninjaapi.h | 3 +++ 1 file changed, 3 insertions(+) (limited to 'binaryninjaapi.h') diff --git a/binaryninjaapi.h b/binaryninjaapi.h index 99d74b16..d399a71c 100644 --- a/binaryninjaapi.h +++ b/binaryninjaapi.h @@ -1370,6 +1370,7 @@ __attribute__ ((format (printf, 1, 2))) }; struct QualifiedNameAndType; + struct PossibleValueSet; class Metadata; class QueryMetadataException: public std::exception { @@ -1659,6 +1660,8 @@ __attribute__ ((format (printf, 1, 2))) uint64_t GetPreviousDataBeforeAddress(uint64_t addr); uint64_t GetPreviousDataVariableStartBeforeAddress(uint64_t addr); + bool ParsePossibleValueSetString(const std::string& value, BNRegisterValueType state, PossibleValueSet& result, uint64_t here, std::string& errors); + bool ParseTypeString(const std::string& text, QualifiedNameAndType& result, std::string& errors, const std::set& typesAllowRedefinition = {}); bool ParseTypeString(const std::string& text, std::map>& types, -- cgit v1.3.1