mirror of
https://gitee.com/openharmony/third_party_rust_cxx
synced 2024-11-23 07:10:29 +00:00
13 lines
215 B
Rust
13 lines
215 B
Rust
#[cxx::bridge]
|
|
mod ffi {
|
|
extern "C++" {
|
|
include!("path/to" what);
|
|
include!(<path/to> what);
|
|
include!(<path/to);
|
|
include!(<path[to]>);
|
|
include!(...);
|
|
}
|
|
}
|
|
|
|
fn main() {}
|