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

        type runtime_android_Host;

        #[Self = "runtime_android_Host"]
        fn sdk_version() -> i64;
    }
}