use rute_ffi_base::*;
#[allow(unused_imports)]
use auto::event_ffi::*;
#[allow(unused_imports)]
use auto::region_ffi::RURegion;
#[allow(unused_imports)]
use std::os::raw::c_void;
#[repr(C)]
#[derive(Copy, Clone)]
pub struct RUExposeEventFuncs {
pub region: extern "C" fn(self_c: *const RUBase) -> RURegion,
}
#[repr(C)]
#[derive(Copy, Clone)]
pub struct RUExposeEventAllFuncs {
pub event_funcs: *const RUEventFuncs,
pub expose_event_funcs: *const RUExposeEventFuncs,
}
#[repr(C)]
#[derive(Copy, Clone)]
pub struct RUExposeEvent {
pub qt_data: *const RUBase,
pub host_data: *const RUBase,
pub all_funcs: *const RUExposeEventAllFuncs,
}