ezffi 0.1.1

Generate C-FFI bindings from Rust types/functions via a single proc-macro attribute
1
2
3
4
5
use std::rc::Rc;

use ezffi_macros::export_extern_type;

export_extern_type!(Rc<T>);