mirror of
https://gitee.com/openharmony/third_party_rust_cxx
synced 2024-11-27 01:11:38 +00:00
9 lines
115 B
Rust
9 lines
115 B
Rust
#[cxx::bridge]
|
|
mod ffi {
|
|
unsafe extern "C++" {
|
|
fn f(callback: fn(p: *const u8));
|
|
}
|
|
}
|
|
|
|
fn main() {}
|