From b9c6552982ab353c57259a577b91cff986646566 Mon Sep 17 00:00:00 2001 From: KyleMiles Date: Thu, 7 Jul 2022 19:39:18 -0400 Subject: Revert 94649dde0d847aa2407d565632f7d2c3cdff32f5: "Add IsExternal callback to debug info API" --- binaryninjaapi.h | 3 --- 1 file changed, 3 deletions(-) (limited to 'binaryninjaapi.h') diff --git a/binaryninjaapi.h b/binaryninjaapi.h index 8c3c8a1a..eb605e8a 100644 --- a/binaryninjaapi.h +++ b/binaryninjaapi.h @@ -6964,13 +6964,11 @@ namespace BinaryNinja { std::string GetName() const; Ref Parse(Ref view, Ref existingDebugInfo = nullptr) const; - bool IsExternal() const; bool IsValidForView(const Ref view) const; }; class CustomDebugInfoParser : public DebugInfoParser { - static bool IsExternalCallback(void* ctxt); static bool IsValidCallback(void* ctxt, BNBinaryView* view); static void ParseCallback(void* ctxt, BNDebugInfo* debugInfo, BNBinaryView* view); BNDebugInfoParser* Register(const std::string& name); @@ -6979,7 +6977,6 @@ namespace BinaryNinja { CustomDebugInfoParser(const std::string& name); virtual ~CustomDebugInfoParser() {} - virtual bool IsExternal() = 0; virtual bool IsValid(Ref) = 0; virtual void ParseInfo(Ref, Ref) = 0; }; -- cgit v1.3.1