From 6cd49edb317112acc73f7caeb285f4134a472d72 Mon Sep 17 00:00:00 2001 From: Fabian Freyer Date: Fri, 28 Jan 2022 01:36:26 +0100 Subject: rust: add linearview and related APIs This should include everything required to retrieve linear disassembly for a function. * add `highest_address` method to `Function` * add `DisassemblySettings` * add text getter for `InstructionTextToken` * add `LinearViewObject`, `LinearViewCursor` * add decompilation example --- rust/src/lib.rs | 1 + 1 file changed, 1 insertion(+) (limited to 'rust/src/lib.rs') diff --git a/rust/src/lib.rs b/rust/src/lib.rs index 1208bb8c..9c18d91d 100644 --- a/rust/src/lib.rs +++ b/rust/src/lib.rs @@ -55,6 +55,7 @@ pub mod flowgraph; pub mod function; pub mod headless; pub mod interaction; +pub mod linearview; pub mod llil; pub mod platform; pub mod rc; -- cgit v1.3.1