1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
#[repr(C)]
#[derive(Debug, Copy, Clone)]
pub struct wrapper_log_cb {
pub function: ::std::option::Option<
unsafe extern "C" fn(
user_data: *mut ::std::os::raw::c_void,
msg: *const ::std::os::raw::c_char,
),
>,
pub user_data: *mut ::std::os::raw::c_void,
}
#[test]
fn bindgen_test_layout_wrapper_log_cb() {
assert_eq!(
::std::mem::size_of::<wrapper_log_cb>(),
16usize,
concat!("Size of: ", stringify!(wrapper_log_cb))
);
assert_eq!(
::std::mem::align_of::<wrapper_log_cb>(),
8usize,
concat!("Alignment of ", stringify!(wrapper_log_cb))
);
assert_eq!(
unsafe { &(*(::std::ptr::null::<wrapper_log_cb>())).function as *const _ as usize },
0usize,
concat!(
"Offset of field: ",
stringify!(wrapper_log_cb),
"::",
stringify!(function)
)
);
assert_eq!(
unsafe { &(*(::std::ptr::null::<wrapper_log_cb>())).user_data as *const _ as usize },
8usize,
concat!(
"Offset of field: ",
stringify!(wrapper_log_cb),
"::",
stringify!(user_data)
)
);
}
extern "C" {
pub static mut wrapper_log_cb: wrapper_log_cb;
}
extern "C" {
pub fn wrapper_evdi_set_logging(cb: wrapper_log_cb);
}