use rute_ffi_base::*;
#[allow(unused_imports)]
use auto::event_ffi::*;
#[allow(unused_imports)]
use auto::point_ffi::RUPoint;
#[allow(unused_imports)]
use std::os::raw::c_void;
#[repr(C)]
#[derive(Copy, Clone)]
pub struct RUMoveEventFuncs {
pub pos: extern "C" fn(self_c: *const RUBase) -> RUPoint,
pub old_pos: extern "C" fn(self_c: *const RUBase) -> RUPoint,
}
#[repr(C)]
#[derive(Copy, Clone)]
pub struct RUMoveEventAllFuncs {
pub event_funcs: *const RUEventFuncs,
pub move_event_funcs: *const RUMoveEventFuncs,
}
#[repr(C)]
#[derive(Copy, Clone)]
pub struct RUMoveEvent {
pub qt_data: *const RUBase,
pub host_data: *const RUBase,
pub all_funcs: *const RUMoveEventAllFuncs,
}