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