gtk_sys/
manual.rs

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