diff options
| author | Markus PiƩton <marpie@a12d404.net> | 2021-04-19 19:33:34 +0200 |
|---|---|---|
| committer | Kyle Martin <krm504@nyu.edu> | 2021-04-28 14:18:34 -0400 |
| commit | b01f92a7efe481e67d1eb96c98078cbd793b67d9 (patch) | |
| tree | 9725eefabae090657bd2e7a8bee961bea74fe01e /rust/examples/flowgraph/src | |
| parent | 4567dee5d8cee82dfdcd21befedc99296f8cf623 (diff) | |
Fix wrong CorePluginABIVersion, plugin_abi_version, and plugin_abi_minimum_version
Diffstat (limited to 'rust/examples/flowgraph/src')
| -rw-r--r-- | rust/examples/flowgraph/src/lib.rs | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/rust/examples/flowgraph/src/lib.rs b/rust/examples/flowgraph/src/lib.rs index 4d5c2241..ac586922 100644 --- a/rust/examples/flowgraph/src/lib.rs +++ b/rust/examples/flowgraph/src/lib.rs @@ -4,7 +4,6 @@ use binaryninja::{ disassembly::{DisassemblyTextLine, InstructionTextToken, InstructionTextTokenType}, flowgraph::{BranchType, EdgePenStyle, EdgeStyle, FlowGraph, FlowGraphNode, ThemeColor}, }; -use binaryninja::plugin_abi_version; fn test_graph(view: &BinaryView) { let graph = FlowGraph::new(); @@ -49,8 +48,3 @@ pub extern "C" fn UIPluginInit() -> bool { ); true } - -#[no_mangle] -pub extern "C" fn UIPluginABIVersion() -> u32 { - plugin_abi_version() -} |
