efl-wl: add missing docs for efl_wl_global_add()

Reviewers: devilhorns

Reviewed By: devilhorns

Subscribers: devilhorns, cedric, #reviewers, #committers

Tags: #efl

Differential Revision: https://phab.enlightenment.org/D8900
This commit is contained in:
Mike Blumenkrantz 2019-06-10 08:57:35 -04:00 committed by Christopher Michael
parent 55eeac0604
commit 2785c822d1
1 changed files with 7 additions and 0 deletions

View File

@ -154,6 +154,13 @@ EAPI void efl_wl_minmax_set(Evas_Object *obj, Eina_Bool set);
* @note The external implementation is expected to restrict access to authorized
* clients
* @see wl_global_create() docs
*
* @param obj The compositor widget
* @param interface The Wayland protocol interface struct of the protocol's global
* @param version The version of the global to use
* @param data User data to use with this interface
* @param bind_cb The callback which should be triggered when the global is bound by a client
* @return The created global (struct wl_global), or NULL on failure
* @since 1.21
*/
EAPI void *efl_wl_global_add(Evas_Object *obj, const void *interface, uint32_t version, void *data, void *bind_cb);