From 6e6e69c84de7f0bd491b645709739cead9eb34e2 Mon Sep 17 00:00:00 2001 From: Chris Cummins Date: Tue, 7 May 2013 11:50:32 +0100 Subject: [PATCH] wayland: Add API version annotations Version numbers have been derived from source code comment blocks. --- clutter/wayland/clutter-stage-wayland.c | 2 ++ clutter/wayland/clutter-wayland.h | 5 +++++ 2 files changed, 7 insertions(+) diff --git a/clutter/wayland/clutter-stage-wayland.c b/clutter/wayland/clutter-stage-wayland.c index ba14a4c70..9065327be 100644 --- a/clutter/wayland/clutter-stage-wayland.c +++ b/clutter/wayland/clutter-stage-wayland.c @@ -271,6 +271,8 @@ clutter_wayland_stage_get_wl_shell_surface (ClutterStage *stage) * platform. Calling this function at any other time will return %NULL. * * Returns: (transfer none): the Wayland surface associated with @stage + * + * Since: 1.10 */ struct wl_surface * clutter_wayland_stage_get_wl_surface (ClutterStage *stage) diff --git a/clutter/wayland/clutter-wayland.h b/clutter/wayland/clutter-wayland.h index b9ffb1bc4..0dd900b13 100644 --- a/clutter/wayland/clutter-wayland.h +++ b/clutter/wayland/clutter-wayland.h @@ -40,8 +40,13 @@ #include G_BEGIN_DECLS +CLUTTER_AVAILABLE_IN_1_10 struct wl_seat *clutter_wayland_input_device_get_wl_seat (ClutterInputDevice *device); + +CLUTTER_AVAILABLE_IN_1_10 struct wl_shell_surface *clutter_wayland_stage_get_wl_shell_surface (ClutterStage *stage); + +CLUTTER_AVAILABLE_IN_1_10 struct wl_surface *clutter_wayland_stage_get_wl_surface (ClutterStage *stage); G_END_DECLS