blob: 81e0a25bb33ae4961e680e631fef8adbeeab634c (
plain)
| 1
2
3
4
5
6
7
8
9
10
 | [CCode (cheader_filename = "gdk/gdkwayland.h")]
namespace Gdk.Wayland {
    [CCode (type_id = "GDK_TYPE_WAYLAND_WINDOW", type_check_function = "GDK_IS_WAYLAND_WINDOW")]
    public class Window : Gdk.Window {
        public bool export_handle (owned WindowExported callback);
    }
    [CCode (instance_pos = 2.9)]
    public delegate void WindowExported (Gdk.Window window, string handle);
}
 |