c_plugin_example/
lib.rs

1
2
3
4
5
6
pub static mut G: i32 = 0;

#[no_mangle]
pub unsafe extern "C" fn foobar(v: i32) {
    G = v;
}