summaryrefslogtreecommitdiff
path: root/rust/examples/flowgraph/src
diff options
context:
space:
mode:
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()
-}