1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
// Take a look at the license at the top of the repository in the LICENSE file.
pub mod xlib {
pub type Window = i32;
}
//=========================================================================
// GtkContainerClass
//=========================================================================
extern "C" {
pub fn gtk_container_class_find_child_property(
cclass: *const gobject::GObjectClass,
property_name: *const libc::c_char,
) -> *mut gobject::GParamSpec;
}