1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
// This file was generated by gir (https://github.com/gtk-rs/gir)
// from gir-files (https://github.com/gtk-rs/gir-files)
// DO NOT EDIT

use gdk_sys;
use gobject_sys;

glib_wrapper! {
    #[derive(Debug, PartialEq, Eq, PartialOrd, Ord, Hash)]
    pub struct EventSequence(Boxed<gdk_sys::GdkEventSequence>);

    match fn {
        copy => |ptr| gobject_sys::g_boxed_copy(gdk_sys::gdk_event_sequence_get_type(), ptr as *mut _) as *mut gdk_sys::GdkEventSequence,
        free => |ptr| gobject_sys::g_boxed_free(gdk_sys::gdk_event_sequence_get_type(), ptr as *mut _),
        get_type => || gdk_sys::gdk_event_sequence_get_type(),
    }
}