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

        type MachO_Relocation = crate::macho::relocation::ffi::MachO_Relocation;

        type MachO_RelocationDyld;

        #[Self = "MachO_RelocationDyld"]
        fn classof(reloc: &MachO_Relocation) -> bool;
    }
    impl UniquePtr<MachO_RelocationDyld> {}
}