From: Giulio Camuffo Date: Tue, 9 Aug 2016 10:46:52 +0000 (+0200) Subject: Add API to retrieve the interface name of a wl_resource X-Git-Tag: 1.11.91~14 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=68abfa6732672ab3534102de55edaa10343f4d1b;p=platform%2Fupstream%2Fwayland.git Add API to retrieve the interface name of a wl_resource Signed-off-by: Giulio Camuffo Reviewed-by: Jonas Ã…dahl Reviewed-by: Pekka Paalanen Reviewed-by: Yong Bakos --- diff --git a/src/wayland-server-core.h b/src/wayland-server-core.h index 43e76fb..c0d25e9 100644 --- a/src/wayland-server-core.h +++ b/src/wayland-server-core.h @@ -427,6 +427,8 @@ int wl_resource_instance_of(struct wl_resource *resource, const struct wl_interface *interface, const void *implementation); +const char * +wl_resource_get_class(struct wl_resource *resource); void wl_resource_add_destroy_listener(struct wl_resource *resource, diff --git a/src/wayland-server.c b/src/wayland-server.c index b44ec9c..e2212e2 100644 --- a/src/wayland-server.c +++ b/src/wayland-server.c @@ -690,6 +690,18 @@ wl_resource_get_destroy_listener(struct wl_resource *resource, return wl_signal_get(&resource->destroy_signal, notify); } +/** Retrieve the interface name (class) of a resource object. + * + * \param resource The resource object + * + * \memberof wl_resource + */ +WL_EXPORT const char * +wl_resource_get_class(struct wl_resource *resource) +{ + return resource->object.interface->name; +} + WL_EXPORT void wl_client_add_destroy_listener(struct wl_client *client, struct wl_listener *listener)