1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// NOTE: cxx-build an empty bridge so that `cxx/include/**/*.hxx` is exported to dependencies
#[cxx::bridge]
mod ffi {
    extern "C++" {
        include!("cxx-auto/cxx/include/cxx-auto.hxx");

        #[cxx_name = "c_char"]
        type _c_char = crate::ffi::ctypes::c_char;
    }

    impl CxxVector<_c_char> {
    }
    impl UniquePtr<_c_char> {
    }
}