ecore-wl2: Add API function to return an iterator for display globals
authorChris Michael <cp.michael@samsung.com>
Thu, 20 Aug 2015 16:18:52 +0000 (12:18 -0400)
committerChris Michael <cp.michael@samsung.com>
Thu, 3 Dec 2015 17:02:40 +0000 (12:02 -0500)
Signed-off-by: Chris Michael <cp.michael@samsung.com>
src/lib/ecore_wl2/Ecore_Wl2.h
src/lib/ecore_wl2/ecore_wl2_display.c

index e60a651..3e9176f 100644 (file)
@@ -190,6 +190,15 @@ EAPI struct wl_display *ecore_wl2_display_get(Ecore_Wl2_Display *display);
  */
 EAPI struct wl_shm *ecore_wl2_display_shm_get(Ecore_Wl2_Display *display);
 
+/**
+ * Return an Eina_Iterator that can be used to iterate through globals
+ *
+ * @param display The Ecore_Wl2_Display for which to return a global iterator
+ *
+ * @ingroup Ecore_Wl2_Display_Group
+ */
+EAPI Eina_Iterator *ecore_wl2_display_globals_get(Ecore_Wl2_Display *display);
+
 /* # ifdef __cplusplus */
 /* } */
 /* # endif */
index 0c16c6d..8f066b0 100644 (file)
@@ -329,3 +329,10 @@ ecore_wl2_display_shm_get(Ecore_Wl2_Display *display)
    EINA_SAFETY_ON_NULL_RETURN_VAL(display, NULL);
    return display->wl.shm;
 }
+
+EAPI Eina_Iterator *
+ecore_wl2_display_globals_get(Ecore_Wl2_Display *display)
+{
+   EINA_SAFETY_ON_NULL_RETURN_VAL(display, NULL);
+   return eina_hash_iterator_data_new(display->globals);
+}