1
2
3
4
5
6
7
8
9
10
11
#[cxx::bridge]
pub mod ffi {
    unsafe extern "C++" {
        include!("LIEF/rust/DyldSharedCache/utils.hpp");

        type dsc_Utils;

        #[Self = "dsc_Utils"]
        fn is_shared_cache(file: &CxxString) -> bool;
    }
}