blob: 27ea3035c45b7e64f7de74332f0d04809c52c3ea [file] [log] [blame]
#![allow(
dead_code,
non_snake_case,
non_camel_case_types,
non_upper_case_globals
)]
/// <div rustbindgen nodefault></div>
#[repr(C)]
#[derive(Debug, Copy, Clone)]
pub struct DefaultButWait {
pub whatever: ::std::os::raw::c_int,
}
#[repr(C)]
#[derive(Debug, Copy, Clone)]
pub struct DefaultButWaitDerived {
pub whatever: DefaultButWait,
}
impl Default for DefaultButWaitDerived {
fn default() -> Self {
unsafe { ::std::mem::zeroed() }
}
}