blob: 7d42cad81d85176ab3514bf44f2054083f8f6c1f [file] [log] [blame]
#![allow(
dead_code,
non_snake_case,
non_camel_case_types,
non_upper_case_globals
)]
#![cfg(not(test))]
#[repr(C)]
#[derive(Default, Copy, Clone)]
pub struct JNINativeInterface_ {
pub GetVersion: ::std::option::Option<
unsafe extern "stdcall" fn(
env: *mut ::std::os::raw::c_void,
) -> ::std::os::raw::c_int,
>,
pub __hack: ::std::os::raw::c_ulonglong,
}
#[test]
fn bindgen_test_layout_JNINativeInterface_() {
assert_eq!(
::std::mem::size_of::<JNINativeInterface_>(),
16usize,
concat!("Size of: ", stringify!(JNINativeInterface_))
);
assert_eq!(
::std::mem::align_of::<JNINativeInterface_>(),
8usize,
concat!("Alignment of ", stringify!(JNINativeInterface_))
);
assert_eq!(
{
let struct_instance =
unsafe { std::mem::zeroed::<JNINativeInterface_>() };
let struct_ptr = &struct_instance as *const JNINativeInterface_;
let field_ptr = std::ptr::addr_of!(struct_instance.GetVersion);
let struct_address = struct_ptr as usize;
let field_address = field_ptr as usize;
std::mem::forget(struct_instance);
field_address.checked_sub(struct_address).unwrap()
},
0usize,
concat!(
"Offset of field: ",
stringify!(JNINativeInterface_),
"::",
stringify!(GetVersion)
)
);
assert_eq!(
{
let struct_instance =
unsafe { std::mem::zeroed::<JNINativeInterface_>() };
let struct_ptr = &struct_instance as *const JNINativeInterface_;
let field_ptr = std::ptr::addr_of!(struct_instance.__hack);
let struct_address = struct_ptr as usize;
let field_address = field_ptr as usize;
std::mem::forget(struct_instance);
field_address.checked_sub(struct_address).unwrap()
},
8usize,
concat!(
"Offset of field: ",
stringify!(JNINativeInterface_),
"::",
stringify!(__hack)
)
);
}
extern "stdcall" {
pub fn bar();
}