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

        type COFF_Utils;

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