summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/main.rs10
1 files changed, 3 insertions, 7 deletions
diff --git a/src/main.rs b/src/main.rs
index 4441b4005..ece311a4f 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -18,7 +18,7 @@ struct DenoC {
_unused: [u8; 0],
}
-type DenoRecvCb = extern "C" fn(d: *const DenoC, channel: *const c_char, buf: deno_buf);
+type DenoRecvCb = extern "C" fn(d: *const DenoC, buf: deno_buf);
#[link(name = "deno", kind = "static")]
extern "C" {
@@ -71,12 +71,8 @@ fn set_flags() -> Vec<String> {
.collect::<Vec<_>>()
}
-extern "C" fn on_message(_d: *const DenoC, channel_ptr: *const c_char, _buf: deno_buf) {
- let channel: &str = unsafe {
- let cstr = CStr::from_ptr(channel_ptr);
- cstr.to_str().unwrap()
- };
- println!("got message in rust {}", channel);
+extern "C" fn on_message(_d: *const DenoC, _buf: deno_buf) {
+ println!("got message in rust");
}
type DenoException<'a> = &'a str;