use rute_ffi_base::*;
#[allow(unused_imports)]
use auto::event_ffi::*;
#[allow(unused_imports)]
use auto::rect_ffi::RURect;
#[allow(unused_imports)]
use std::os::raw::c_void;
#[repr(C)]
#[derive(Copy, Clone)]
pub struct RUPaintEventFuncs {
pub rect: extern "C" fn(self_c: *const RUBase) -> RURect,
}
#[repr(C)]
#[derive(Copy, Clone)]
pub struct RUPaintEventAllFuncs {
pub event_funcs: *const RUEventFuncs,
pub paint_event_funcs: *const RUPaintEventFuncs,
}
#[repr(C)]
#[derive(Copy, Clone)]
pub struct RUPaintEvent {
pub qt_data: *const RUBase,
pub host_data: *const RUBase,
pub all_funcs: *const RUPaintEventAllFuncs,
}