From d8e3001e535fad178c621ff07418f81f25123dc4 Mon Sep 17 00:00:00 2001 From: Rusty Wagner Date: Thu, 22 Aug 2024 12:55:49 -0600 Subject: Allow multiple high level representations for display, add Pseudo Rust and a Pseudo Python example plugin --- rust/src/databuffer.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'rust/src/databuffer.rs') diff --git a/rust/src/databuffer.rs b/rust/src/databuffer.rs index c3d268cd..29d7636b 100644 --- a/rust/src/databuffer.rs +++ b/rust/src/databuffer.rs @@ -109,8 +109,8 @@ impl DataBuffer { } } - pub fn to_escaped_string(&self, null_terminates: bool) -> BnString { - unsafe { BnString::from_raw(BNDataBufferToEscapedString(self.0, null_terminates)) } + pub fn to_escaped_string(&self, null_terminates: bool, escape_printable: bool) -> BnString { + unsafe { BnString::from_raw(BNDataBufferToEscapedString(self.0, null_terminates, escape_printable)) } } pub fn from_escaped_string(value: &BnString) -> Self { -- cgit v1.3.1