mirror of
https://gitee.com/openharmony/third_party_rust_cxx
synced 2024-11-23 07:10:29 +00:00
11 lines
136 B
Rust
11 lines
136 B
Rust
#[cxx::bridge]
|
|
mod ffi {
|
|
unsafe extern "C++" {
|
|
type C;
|
|
|
|
fn get_neither_const_nor_mut() -> *C;
|
|
}
|
|
}
|
|
|
|
fn main() {}
|