From b01f92a7efe481e67d1eb96c98078cbd793b67d9 Mon Sep 17 00:00:00 2001 From: Markus PiƩton Date: Mon, 19 Apr 2021 19:33:34 +0200 Subject: Fix wrong CorePluginABIVersion, plugin_abi_version, and plugin_abi_minimum_version --- rust/examples/flowgraph/src/lib.rs | 6 ------ 1 file changed, 6 deletions(-) (limited to 'rust/examples/flowgraph/src') 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() -} -- cgit v1.3.1