summaryrefslogtreecommitdiff
path: root/rust/examples/flowgraph/src
diff options
context:
space:
mode:
authorMarkus PiƩton <marpie@a12d404.net>2021-04-19 19:33:34 +0200
committerKyle Martin <krm504@nyu.edu>2021-04-28 14:18:34 -0400
commitb01f92a7efe481e67d1eb96c98078cbd793b67d9 (patch)
tree9725eefabae090657bd2e7a8bee961bea74fe01e /rust/examples/flowgraph/src
parent4567dee5d8cee82dfdcd21befedc99296f8cf623 (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.rs6
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()
-}