rute 0.0.1

UI library implemented on top of Qt
// This file is auto-generated by rute_gen. DO NOT EDIT.
use rute_ffi_base::*;

use auto::widget_ffi::*;

#[repr(C)]
#[derive(Copy, Clone)]
pub struct RUListWidgetFuncs {
    pub destroy: extern "C" fn(self_c: *const RUBase),
    pub add_item: extern "C" fn(self_c: *const RUBase, label: *const ::std::os::raw::c_char),
    pub clear: extern "C" fn(self_c: *const RUBase),
}

#[repr(C)]
#[derive(Copy, Clone)]
pub struct RUListWidgetAllFuncs {
    pub widget_funcs: *const RUWidgetFuncs,
    pub list_widget_funcs: *const RUListWidgetFuncs,
}

#[repr(C)]
#[derive(Copy, Clone)]
pub struct RUListWidget {
    pub qt_data: *const RUBase,
    pub host_data: *const RUBase,
    pub all_funcs: *const RUListWidgetAllFuncs,
}