Skip to main content

gtk_sys/
manual.rs

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