diff options
| author | Brian Potchik <brian@vector35.com> | 2025-05-01 15:08:15 -0400 |
|---|---|---|
| committer | Brian Potchik <brian@vector35.com> | 2025-05-01 15:08:15 -0400 |
| commit | c997e959029e004faaa15fcfb27df48c15baff11 (patch) | |
| tree | 744e442a34f722583c9f3aafa981794ed9ed6e83 /binaryninjacore.h | |
| parent | c40a5f04deec68d388b2072dc42b29141089f9ce (diff) | |
Updates to WorkflowMonitor UI.
Diffstat (limited to 'binaryninjacore.h')
| -rw-r--r-- | binaryninjacore.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/binaryninjacore.h b/binaryninjacore.h index 4a75eeb1..91e366f4 100644 --- a/binaryninjacore.h +++ b/binaryninjacore.h @@ -37,7 +37,7 @@ // Current ABI version for linking to the core. This is incremented any time // there are changes to the API that affect linking, including new functions, // new types, or modifications to existing functions or types. -#define BN_CURRENT_CORE_ABI_VERSION 104 +#define BN_CURRENT_CORE_ABI_VERSION 105 // Minimum ABI version that is supported for loading of plugins. Plugins that // are linked to an ABI version less than this will not be able to load and @@ -5547,11 +5547,13 @@ extern "C" // BinaryView Workflow Machine BINARYNINJACOREAPI BNWorkflow* BNGetWorkflowForBinaryView(BNBinaryView* view); BINARYNINJACOREAPI char* BNPostWorkflowRequestForBinaryView(BNBinaryView* view, const char* request); + BINARYNINJACOREAPI BNFlowGraph* BNGetWorkflowGraphForBinaryView(BNBinaryView* view, const char* name, bool sequential); BINARYNINJACOREAPI void BNShowWorkflowReportForBinaryView(BNBinaryView* view, const char* name); // Function Workflow Machine BINARYNINJACOREAPI BNWorkflow* BNGetWorkflowForFunction(BNFunction* func); BINARYNINJACOREAPI char* BNPostWorkflowRequestForFunction(BNFunction* func, const char* request); + BINARYNINJACOREAPI BNFlowGraph* BNGetWorkflowGraphForFunction(BNFunction* func, const char* name, bool sequential); BINARYNINJACOREAPI void BNShowWorkflowReportForFunction(BNFunction* func, const char* name); // Provenance |
