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

        type PE_Debug = crate::pe::debug::debug::ffi::PE_Debug;

        type PE_ExDllCharacteristics;

        #[Self = "PE_ExDllCharacteristics"]
        fn classof(entry: &PE_Debug) -> bool;
        fn characteristics(self: &PE_ExDllCharacteristics) -> u32;
    }
    impl UniquePtr<PE_ExDllCharacteristics> {}
}