From 0ab11a785925ac6eeec510a41f779fe7879426f3 Mon Sep 17 00:00:00 2001 From: Rusty Wagner Date: Wed, 22 Apr 2020 20:46:48 -0400 Subject: Add support for analysis warnings in linear view --- binaryninjacore.h | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) (limited to 'binaryninjacore.h') diff --git a/binaryninjacore.h b/binaryninjacore.h index f6ac4510..2384989e 100644 --- a/binaryninjacore.h +++ b/binaryninjacore.h @@ -293,7 +293,15 @@ extern "C" SectionStartLineType, SectionEndLineType, SectionSeparatorLineType, - NonContiguousSeparatorLineType + NonContiguousSeparatorLineType, + AnalysisWarningLineType + }; + + enum BNAnalysisWarningActionType + { + NoAnalysisWarningAction = 0, + ForceAnalysisWarningAction = 1, + ShowStackGraphWarningAction = 2 }; enum BNSymbolType -- cgit v1.3.1