gdk/auto/
event_sequence.rs

1// This file was generated by gir (https://github.com/gtk-rs/gir)
2// from gir-files (https://github.com/gtk-rs/gir-files)
3// DO NOT EDIT
4
5use gdk_sys;
6use gobject_sys;
7
8glib_wrapper! {
9    #[derive(Debug, PartialEq, Eq, PartialOrd, Ord, Hash)]
10    pub struct EventSequence(Boxed<gdk_sys::GdkEventSequence>);
11
12    match fn {
13        copy => |ptr| gobject_sys::g_boxed_copy(gdk_sys::gdk_event_sequence_get_type(), ptr as *mut _) as *mut gdk_sys::GdkEventSequence,
14        free => |ptr| gobject_sys::g_boxed_free(gdk_sys::gdk_event_sequence_get_type(), ptr as *mut _),
15        get_type => || gdk_sys::gdk_event_sequence_get_type(),
16    }
17}