mirror of
https://github.com/topjohnwu/cxx.git
synced 2025-02-24 18:12:14 +00:00
17 lines
182 B
Rust
17 lines
182 B
Rust
#[cxx::bridge]
|
|
mod ffi {
|
|
struct UniquePtr {
|
|
val: usize,
|
|
}
|
|
|
|
extern "C++" {
|
|
type Box;
|
|
}
|
|
|
|
extern "Rust" {
|
|
type String;
|
|
}
|
|
}
|
|
|
|
fn main() {}
|