1 #[cxx::bridge] 2 mod ffi { 3 extern "C++" { 4 include!("path/to" what); 5 include!(<path/to> what); 6 include!(<path/to); 7 include!(<path[to]>); 8 include!(...); 9 } 10 } 11 main()12 fn main() {} 13