mirror of
https://github.com/denoland/deno.git
synced 2024-12-12 10:37:52 -05:00
33c8d790c3
This commit removes implementation of "native plugins" and replaces it with FFI API. Effectively "Deno.openPlugin" API was replaced with "Deno.dlopen" API.
9 lines
149 B
Rust
9 lines
149 B
Rust
#[no_mangle]
|
|
pub extern "C" fn print_something() {
|
|
println!("something");
|
|
}
|
|
|
|
#[no_mangle]
|
|
pub extern "C" fn add(a: u32, b: u32) -> u32 {
|
|
a + b
|
|
}
|